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

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

Issue 26427002: Add always-on-top property to app windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge Created 7 years, 2 months 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
OLDNEW
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 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 21 matching lines...) Expand all
32 virtual void Show() OVERRIDE {} 32 virtual void Show() OVERRIDE {}
33 virtual void ShowInactive() OVERRIDE {} 33 virtual void ShowInactive() OVERRIDE {}
34 virtual void Hide() OVERRIDE {} 34 virtual void Hide() OVERRIDE {}
35 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE {} 35 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE {}
36 virtual void Close() OVERRIDE {} 36 virtual void Close() OVERRIDE {}
37 virtual void Activate() OVERRIDE {} 37 virtual void Activate() OVERRIDE {}
38 virtual void Deactivate() OVERRIDE {} 38 virtual void Deactivate() OVERRIDE {}
39 virtual bool IsActive() const OVERRIDE; 39 virtual bool IsActive() const OVERRIDE;
40 virtual void FlashFrame(bool flash) OVERRIDE {} 40 virtual void FlashFrame(bool flash) OVERRIDE {}
41 virtual bool IsAlwaysOnTop() const OVERRIDE; 41 virtual bool IsAlwaysOnTop() const OVERRIDE;
42 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE {}
42 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; 43 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
43 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE; 44 virtual BrowserWindowTesting* GetBrowserWindowTesting() OVERRIDE;
44 virtual StatusBubble* GetStatusBubble() OVERRIDE; 45 virtual StatusBubble* GetStatusBubble() OVERRIDE;
45 virtual void UpdateTitleBar() OVERRIDE {} 46 virtual void UpdateTitleBar() OVERRIDE {}
46 virtual void BookmarkBarStateChanged( 47 virtual void BookmarkBarStateChanged(
47 BookmarkBar::AnimateChangeType change_type) OVERRIDE {} 48 BookmarkBar::AnimateChangeType change_type) OVERRIDE {}
48 virtual void UpdateDevTools() OVERRIDE {} 49 virtual void UpdateDevTools() OVERRIDE {}
49 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {} 50 virtual void UpdateLoadingAnimations(bool should_animate) OVERRIDE {}
50 virtual void SetStarredState(bool is_starred) OVERRIDE {} 51 virtual void SetStarredState(bool is_starred) OVERRIDE {}
51 virtual void OnActiveTabChanged(content::WebContents* old_contents, 52 virtual void OnActiveTabChanged(content::WebContents* old_contents,
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 }; 189 };
189 190
190 namespace chrome { 191 namespace chrome {
191 192
192 // Helper that handle the lifetime of TestBrowserWindow instances. 193 // Helper that handle the lifetime of TestBrowserWindow instances.
193 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params); 194 Browser* CreateBrowserWithTestWindowForParams(Browser::CreateParams* params);
194 195
195 } // namespace chrome 196 } // namespace chrome
196 197
197 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ 198 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698