| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 virtual void FocusToolbar() OVERRIDE {} | 74 virtual void FocusToolbar() OVERRIDE {} |
| 75 virtual void FocusAppMenu() OVERRIDE {} | 75 virtual void FocusAppMenu() OVERRIDE {} |
| 76 virtual void FocusBookmarksToolbar() OVERRIDE {} | 76 virtual void FocusBookmarksToolbar() OVERRIDE {} |
| 77 virtual void RotatePaneFocus(bool forwards) OVERRIDE {} | 77 virtual void RotatePaneFocus(bool forwards) OVERRIDE {} |
| 78 virtual void ShowAppMenu() OVERRIDE {} | 78 virtual void ShowAppMenu() OVERRIDE {} |
| 79 virtual bool PreHandleKeyboardEvent( | 79 virtual bool PreHandleKeyboardEvent( |
| 80 const content::NativeWebKeyboardEvent& event, | 80 const content::NativeWebKeyboardEvent& event, |
| 81 bool* is_keyboard_shortcut) OVERRIDE; | 81 bool* is_keyboard_shortcut) OVERRIDE; |
| 82 virtual void HandleKeyboardEvent( | 82 virtual void HandleKeyboardEvent( |
| 83 const content::NativeWebKeyboardEvent& event) OVERRIDE {} | 83 const content::NativeWebKeyboardEvent& event) OVERRIDE {} |
| 84 virtual void ShowCreateWebAppShortcutsDialog( | |
| 85 TabContents* tab_contents) OVERRIDE {} | |
| 86 virtual void ShowCreateChromeAppShortcutsDialog( | 84 virtual void ShowCreateChromeAppShortcutsDialog( |
| 87 Profile* profile, | 85 Profile* profile, |
| 88 const extensions::Extension* app) OVERRIDE {} | 86 const extensions::Extension* app) OVERRIDE {} |
| 89 | 87 |
| 90 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 88 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 91 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 89 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 92 virtual bool IsTabStripEditable() const OVERRIDE; | 90 virtual bool IsTabStripEditable() const OVERRIDE; |
| 93 virtual bool IsToolbarVisible() const OVERRIDE; | 91 virtual bool IsToolbarVisible() const OVERRIDE; |
| 94 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 92 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 95 virtual bool IsPanel() const OVERRIDE; | 93 virtual bool IsPanel() const OVERRIDE; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 protected: | 145 protected: |
| 148 virtual void DestroyBrowser() OVERRIDE {} | 146 virtual void DestroyBrowser() OVERRIDE {} |
| 149 | 147 |
| 150 private: | 148 private: |
| 151 TestLocationBar location_bar_; | 149 TestLocationBar location_bar_; |
| 152 | 150 |
| 153 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); | 151 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); |
| 154 }; | 152 }; |
| 155 | 153 |
| 156 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 154 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
| OLD | NEW |