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

Side by Side Diff: chrome/test/test_browser_window.h

Issue 244003: Kiosk Mode implementation (Closed)
Patch Set: Finally fix MACOSX Created 11 years, 1 month 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
« no previous file with comments | « chrome/test/automation/browser_proxy.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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_TEST_BROWSER_WINDOW_H_ 5 #ifndef CHROME_TEST_TEST_BROWSER_WINDOW_H_
6 #define CHROME_TEST_TEST_BROWSER_WINDOW_H_ 6 #define CHROME_TEST_TEST_BROWSER_WINDOW_H_
7 7
8 #include "chrome/browser/browser.h" 8 #include "chrome/browser/browser.h"
9 #include "chrome/browser/browser_window.h" 9 #include "chrome/browser/browser_window.h"
10 #include "chrome/test/test_location_bar.h" 10 #include "chrome/test/test_location_bar.h"
(...skipping 21 matching lines...) Expand all
32 virtual void UpdateTitleBar() {} 32 virtual void UpdateTitleBar() {}
33 virtual void ShelfVisibilityChanged() {} 33 virtual void ShelfVisibilityChanged() {}
34 virtual void UpdateDevTools() {} 34 virtual void UpdateDevTools() {}
35 virtual void FocusDevTools() {} 35 virtual void FocusDevTools() {}
36 virtual void UpdateLoadingAnimations(bool should_animate) {} 36 virtual void UpdateLoadingAnimations(bool should_animate) {}
37 virtual void SetStarredState(bool is_starred) {} 37 virtual void SetStarredState(bool is_starred) {}
38 virtual gfx::Rect GetRestoredBounds() const { return gfx::Rect(); } 38 virtual gfx::Rect GetRestoredBounds() const { return gfx::Rect(); }
39 virtual bool IsMaximized() const { return false; } 39 virtual bool IsMaximized() const { return false; }
40 virtual void SetFullscreen(bool fullscreen) {} 40 virtual void SetFullscreen(bool fullscreen) {}
41 virtual bool IsFullscreen() const { return false; } 41 virtual bool IsFullscreen() const { return false; }
42 virtual bool IsFullscreenBubbleVisible() const { return false; }
42 virtual LocationBar* GetLocationBar() const { 43 virtual LocationBar* GetLocationBar() const {
43 return const_cast<TestLocationBar*>(&location_bar_); 44 return const_cast<TestLocationBar*>(&location_bar_);
44 } 45 }
45 virtual void SetFocusToLocationBar() {} 46 virtual void SetFocusToLocationBar() {}
46 virtual void UpdateStopGoState(bool is_loading, bool force) {} 47 virtual void UpdateStopGoState(bool is_loading, bool force) {}
47 virtual void UpdateToolbar(TabContents* contents, 48 virtual void UpdateToolbar(TabContents* contents,
48 bool should_restore_state) {} 49 bool should_restore_state) {}
49 virtual void FocusToolbar() {} 50 virtual void FocusToolbar() {}
50 virtual void ShowPageMenu() {} 51 virtual void ShowPageMenu() {}
51 virtual void ShowAppMenu() {} 52 virtual void ShowAppMenu() {}
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 protected: 92 protected:
92 virtual void DestroyBrowser() {} 93 virtual void DestroyBrowser() {}
93 94
94 private: 95 private:
95 TestLocationBar location_bar_; 96 TestLocationBar location_bar_;
96 97
97 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); 98 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow);
98 }; 99 };
99 100
100 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_ 101 #endif // CHROME_TEST_TEST_BROWSER_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/test/automation/browser_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698