OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "chrome/browser/extensions/extension_util.h" | 26 #include "chrome/browser/extensions/extension_util.h" |
27 #include "chrome/browser/extensions/tab_helper.h" | 27 #include "chrome/browser/extensions/tab_helper.h" |
28 #include "chrome/browser/first_run/first_run.h" | 28 #include "chrome/browser/first_run/first_run.h" |
29 #include "chrome/browser/lifetime/application_lifetime.h" | 29 #include "chrome/browser/lifetime/application_lifetime.h" |
30 #include "chrome/browser/prefs/incognito_mode_prefs.h" | 30 #include "chrome/browser/prefs/incognito_mode_prefs.h" |
31 #include "chrome/browser/profiles/profile.h" | 31 #include "chrome/browser/profiles/profile.h" |
32 #include "chrome/browser/profiles/profile_info_cache.h" | 32 #include "chrome/browser/profiles/profile_info_cache.h" |
33 #include "chrome/browser/profiles/profile_manager.h" | 33 #include "chrome/browser/profiles/profile_manager.h" |
34 #include "chrome/browser/search/search.h" | 34 #include "chrome/browser/search/search.h" |
35 #include "chrome/browser/sessions/session_service_factory.h" | 35 #include "chrome/browser/sessions/session_service_factory.h" |
36 #include "chrome/browser/ssl/security_state_model.h" | |
37 #include "chrome/browser/translate/chrome_translate_client.h" | 36 #include "chrome/browser/translate/chrome_translate_client.h" |
38 #include "chrome/browser/translate/cld_data_harness.h" | 37 #include "chrome/browser/translate/cld_data_harness.h" |
39 #include "chrome/browser/translate/cld_data_harness_factory.h" | 38 #include "chrome/browser/translate/cld_data_harness_factory.h" |
40 #include "chrome/browser/ui/browser.h" | 39 #include "chrome/browser/ui/browser.h" |
41 #include "chrome/browser/ui/browser_command_controller.h" | 40 #include "chrome/browser/ui/browser_command_controller.h" |
42 #include "chrome/browser/ui/browser_commands.h" | 41 #include "chrome/browser/ui/browser_commands.h" |
43 #include "chrome/browser/ui/browser_finder.h" | 42 #include "chrome/browser/ui/browser_finder.h" |
44 #include "chrome/browser/ui/browser_iterator.h" | 43 #include "chrome/browser/ui/browser_iterator.h" |
45 #include "chrome/browser/ui/browser_tabstrip.h" | 44 #include "chrome/browser/ui/browser_tabstrip.h" |
46 #include "chrome/browser/ui/browser_ui_prefs.h" | 45 #include "chrome/browser/ui/browser_ui_prefs.h" |
(...skipping 3169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3216 false); | 3215 false); |
3217 | 3216 |
3218 // Sync navigation just to make sure IPC has passed (updated | 3217 // Sync navigation just to make sure IPC has passed (updated |
3219 // display mode is delivered to RP). | 3218 // display mode is delivered to RP). |
3220 content::TestNavigationObserver observer(app_contents, 1); | 3219 content::TestNavigationObserver observer(app_contents, 1); |
3221 ui_test_utils::NavigateToURL(app_browser, GURL(url::kAboutBlankURL)); | 3220 ui_test_utils::NavigateToURL(app_browser, GURL(url::kAboutBlankURL)); |
3222 observer.Wait(); | 3221 observer.Wait(); |
3223 | 3222 |
3224 CheckDisplayModeMQ(ASCIIToUTF16("fullscreen"), app_contents); | 3223 CheckDisplayModeMQ(ASCIIToUTF16("fullscreen"), app_contents); |
3225 } | 3224 } |
OLD | NEW |