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

Side by Side Diff: chrome/browser/ui/panels/panel.h

Issue 11147037: Add a 'hidden' option to chrome.app.window.create() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ash tests Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/gtk/extensions/shell_window_gtk.cc ('k') | chrome/browser/ui/panels/panel.cc » ('j') | 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) 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_PANELS_PANEL_H_ 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_
6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 // BaseWindow overrides. 116 // BaseWindow overrides.
117 virtual bool IsActive() const OVERRIDE; 117 virtual bool IsActive() const OVERRIDE;
118 virtual bool IsMaximized() const OVERRIDE; 118 virtual bool IsMaximized() const OVERRIDE;
119 virtual bool IsMinimized() const OVERRIDE; 119 virtual bool IsMinimized() const OVERRIDE;
120 virtual bool IsFullscreen() const OVERRIDE; 120 virtual bool IsFullscreen() const OVERRIDE;
121 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE; 121 virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
122 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; 122 virtual gfx::Rect GetRestoredBounds() const OVERRIDE;
123 virtual gfx::Rect GetBounds() const OVERRIDE; 123 virtual gfx::Rect GetBounds() const OVERRIDE;
124 virtual void Show() OVERRIDE; 124 virtual void Show() OVERRIDE;
125 virtual void ShowInactive() OVERRIDE; 125 virtual void ShowInactive() OVERRIDE;
126 virtual void Hide() OVERRIDE;
126 virtual void Close() OVERRIDE; 127 virtual void Close() OVERRIDE;
127 virtual void Activate() OVERRIDE; 128 virtual void Activate() OVERRIDE;
128 virtual void Deactivate() OVERRIDE; 129 virtual void Deactivate() OVERRIDE;
129 virtual void Maximize() OVERRIDE; 130 virtual void Maximize() OVERRIDE;
130 virtual void Minimize() OVERRIDE; 131 virtual void Minimize() OVERRIDE;
131 virtual void Restore() OVERRIDE; 132 virtual void Restore() OVERRIDE;
132 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; 133 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE;
133 virtual void FlashFrame(bool flash) OVERRIDE; 134 virtual void FlashFrame(bool flash) OVERRIDE;
134 virtual bool IsAlwaysOnTop() const OVERRIDE; 135 virtual bool IsAlwaysOnTop() const OVERRIDE;
135 136
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 // Used for loading app_icon_. 384 // Used for loading app_icon_.
384 scoped_ptr<ImageLoadingTracker> app_icon_loader_; 385 scoped_ptr<ImageLoadingTracker> app_icon_loader_;
385 386
386 // Icon showed in the task bar. 387 // Icon showed in the task bar.
387 gfx::Image app_icon_; 388 gfx::Image app_icon_;
388 389
389 DISALLOW_COPY_AND_ASSIGN(Panel); 390 DISALLOW_COPY_AND_ASSIGN(Panel);
390 }; 391 };
391 392
392 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ 393 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/extensions/shell_window_gtk.cc ('k') | chrome/browser/ui/panels/panel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698