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_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 virtual bool IsFullscreen() const OVERRIDE; | 57 virtual bool IsFullscreen() const OVERRIDE; |
58 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; | 58 virtual bool IsFullscreenBubbleVisible() const OVERRIDE; |
59 virtual LocationBar* GetLocationBar() const OVERRIDE; | 59 virtual LocationBar* GetLocationBar() const OVERRIDE; |
60 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE {} | 60 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE {} |
61 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE {} | 61 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE {} |
62 virtual void UpdateToolbar(TabContentsWrapper* contents, | 62 virtual void UpdateToolbar(TabContentsWrapper* contents, |
63 bool should_restore_state) OVERRIDE {} | 63 bool should_restore_state) OVERRIDE {} |
64 virtual void FocusToolbar() OVERRIDE {} | 64 virtual void FocusToolbar() OVERRIDE {} |
65 virtual void FocusAppMenu() OVERRIDE {} | 65 virtual void FocusAppMenu() OVERRIDE {} |
66 virtual void FocusBookmarksToolbar() OVERRIDE {} | 66 virtual void FocusBookmarksToolbar() OVERRIDE {} |
67 virtual void FocusChromeOSStatus() OVERRIDE {} | |
68 virtual void RotatePaneFocus(bool forwards) OVERRIDE {} | 67 virtual void RotatePaneFocus(bool forwards) OVERRIDE {} |
69 virtual void ShowAppMenu() OVERRIDE {} | 68 virtual void ShowAppMenu() OVERRIDE {} |
70 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, | 69 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, |
71 bool* is_keyboard_shortcut) OVERRIDE; | 70 bool* is_keyboard_shortcut) OVERRIDE; |
72 virtual void HandleKeyboardEvent( | 71 virtual void HandleKeyboardEvent( |
73 const NativeWebKeyboardEvent& event) OVERRIDE {} | 72 const NativeWebKeyboardEvent& event) OVERRIDE {} |
74 virtual void ShowCreateWebAppShortcutsDialog( | 73 virtual void ShowCreateWebAppShortcutsDialog( |
75 TabContentsWrapper* tab_contents) OVERRIDE {} | 74 TabContentsWrapper* tab_contents) OVERRIDE {} |
76 virtual void ShowCreateChromeAppShortcutsDialog( | 75 virtual void ShowCreateChromeAppShortcutsDialog( |
77 Profile* profile, | 76 Profile* profile, |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 protected: | 142 protected: |
144 virtual void DestroyBrowser() OVERRIDE {} | 143 virtual void DestroyBrowser() OVERRIDE {} |
145 | 144 |
146 private: | 145 private: |
147 TestLocationBar location_bar_; | 146 TestLocationBar location_bar_; |
148 | 147 |
149 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 148 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
150 }; | 149 }; |
151 | 150 |
152 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 151 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |