Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: chrome/browser/ssl/ssl_browser_tests.cc

Issue 9382037: Move ContextMenuParams struct from webkit/glue to content/public/common. The reasons are: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/time.h" 6 #include "base/time.h"
7 #include "chrome/app/chrome_command_ids.h" 7 #include "chrome/app/chrome_command_ids.h"
8 #include "chrome/browser/tabs/tab_strip_model.h" 8 #include "chrome/browser/tabs/tab_strip_model.h"
9 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
10 #include "chrome/browser/ui/browser_navigator.h" 10 #include "chrome/browser/ui/browser_navigator.h"
11 #include "chrome/browser/ui/constrained_window_tab_helper.h" 11 #include "chrome/browser/ui/constrained_window_tab_helper.h"
12 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 12 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
13 #include "chrome/common/chrome_notification_types.h" 13 #include "chrome/common/chrome_notification_types.h"
14 #include "chrome/common/chrome_switches.h" 14 #include "chrome/common/chrome_switches.h"
15 #include "chrome/test/base/in_process_browser_test.h" 15 #include "chrome/test/base/in_process_browser_test.h"
16 #include "chrome/test/base/ui_test_utils.h" 16 #include "chrome/test/base/ui_test_utils.h"
17 #include "content/browser/renderer_host/render_view_host.h" 17 #include "content/browser/renderer_host/render_view_host.h"
18 #include "content/public/browser/interstitial_page.h" 18 #include "content/public/browser/interstitial_page.h"
19 #include "content/public/browser/navigation_controller.h" 19 #include "content/public/browser/navigation_controller.h"
20 #include "content/public/browser/navigation_entry.h" 20 #include "content/public/browser/navigation_entry.h"
21 #include "content/public/browser/notification_service.h" 21 #include "content/public/browser/notification_service.h"
22 #include "content/public/browser/ssl_status.h"
23 #include "content/public/browser/web_contents.h" 22 #include "content/public/browser/web_contents.h"
24 #include "content/public/common/security_style.h" 23 #include "content/public/common/security_style.h"
24 #include "content/public/common/ssl_status.h"
25 #include "net/base/cert_status_flags.h" 25 #include "net/base/cert_status_flags.h"
26 #include "net/test/test_server.h" 26 #include "net/test/test_server.h"
27 27
28 using content::InterstitialPage; 28 using content::InterstitialPage;
29 using content::NavigationController; 29 using content::NavigationController;
30 using content::NavigationEntry; 30 using content::NavigationEntry;
31 using content::SSLStatus; 31 using content::SSLStatus;
32 using content::WebContents; 32 using content::WebContents;
33 33
34 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); 34 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data");
(...skipping 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1341 1341
1342 // Visit a page over https that contains a frame with a redirect. 1342 // Visit a page over https that contains a frame with a redirect.
1343 1343
1344 // XMLHttpRequest insecure content in synchronous mode. 1344 // XMLHttpRequest insecure content in synchronous mode.
1345 1345
1346 // XMLHttpRequest insecure content in asynchronous mode. 1346 // XMLHttpRequest insecure content in asynchronous mode.
1347 1347
1348 // XMLHttpRequest over bad ssl in synchronous mode. 1348 // XMLHttpRequest over bad ssl in synchronous mode.
1349 1349
1350 // XMLHttpRequest over OK ssl in synchronous mode. 1350 // XMLHttpRequest over OK ssl in synchronous mode.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698