OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_UI_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 friend class FullscreenControllerTest; | 503 friend class FullscreenControllerTest; |
504 FRIEND_TEST_ALL_PREFIXES(AppModeTest, EnableAppModeTest); | 504 FRIEND_TEST_ALL_PREFIXES(AppModeTest, EnableAppModeTest); |
505 FRIEND_TEST_ALL_PREFIXES(BrowserCommandControllerTest, | 505 FRIEND_TEST_ALL_PREFIXES(BrowserCommandControllerTest, |
506 IsReservedCommandOrKeyIsApp); | 506 IsReservedCommandOrKeyIsApp); |
507 FRIEND_TEST_ALL_PREFIXES(BrowserCommandControllerTest, AppFullScreen); | 507 FRIEND_TEST_ALL_PREFIXES(BrowserCommandControllerTest, AppFullScreen); |
508 FRIEND_TEST_ALL_PREFIXES(BrowserTest, NoTabsInPopups); | 508 FRIEND_TEST_ALL_PREFIXES(BrowserTest, NoTabsInPopups); |
509 FRIEND_TEST_ALL_PREFIXES(BrowserTest, ConvertTabToAppShortcut); | 509 FRIEND_TEST_ALL_PREFIXES(BrowserTest, ConvertTabToAppShortcut); |
510 FRIEND_TEST_ALL_PREFIXES(BrowserTest, OpenAppWindowLikeNtp); | 510 FRIEND_TEST_ALL_PREFIXES(BrowserTest, OpenAppWindowLikeNtp); |
511 FRIEND_TEST_ALL_PREFIXES(BrowserTest, AppIdSwitch); | 511 FRIEND_TEST_ALL_PREFIXES(BrowserTest, AppIdSwitch); |
512 FRIEND_TEST_ALL_PREFIXES(BrowserTest, ShouldShowLocationBar); | 512 FRIEND_TEST_ALL_PREFIXES(BrowserTest, ShouldShowLocationBar); |
| 513 FRIEND_TEST_ALL_PREFIXES(BrowserTest, CloseTabFocus); |
513 FRIEND_TEST_ALL_PREFIXES(ExclusiveAccessBubbleWindowControllerTest, | 514 FRIEND_TEST_ALL_PREFIXES(ExclusiveAccessBubbleWindowControllerTest, |
514 DenyExitsFullscreen); | 515 DenyExitsFullscreen); |
515 FRIEND_TEST_ALL_PREFIXES(FullscreenControllerTest, | 516 FRIEND_TEST_ALL_PREFIXES(FullscreenControllerTest, |
516 TabEntersPresentationModeFromWindowed); | 517 TabEntersPresentationModeFromWindowed); |
517 FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest, OpenAppShortcutNoPref); | 518 FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest, OpenAppShortcutNoPref); |
518 FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest, | 519 FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest, |
519 OpenAppShortcutWindowPref); | 520 OpenAppShortcutWindowPref); |
520 FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest, OpenAppShortcutTabPref); | 521 FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest, OpenAppShortcutTabPref); |
521 | 522 |
522 class InterstitialObserver; | 523 class InterstitialObserver; |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 // The following factory is used for chrome update coalescing. | 995 // The following factory is used for chrome update coalescing. |
995 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 996 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
996 | 997 |
997 // The following factory is used to close the frame at a later time. | 998 // The following factory is used to close the frame at a later time. |
998 base::WeakPtrFactory<Browser> weak_factory_; | 999 base::WeakPtrFactory<Browser> weak_factory_; |
999 | 1000 |
1000 DISALLOW_COPY_AND_ASSIGN(Browser); | 1001 DISALLOW_COPY_AND_ASSIGN(Browser); |
1001 }; | 1002 }; |
1002 | 1003 |
1003 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1004 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |