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

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

Issue 7604032: Showing Task manager on the foreground window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/ui/browser_window.h" 9 #include "chrome/browser/ui/browser_window.h"
10 10
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 virtual void ShowTaskManager() OVERRIDE; 98 virtual void ShowTaskManager() OVERRIDE;
99 virtual void ShowBackgroundPages() OVERRIDE; 99 virtual void ShowBackgroundPages() OVERRIDE;
100 virtual void ShowBookmarkBubble( 100 virtual void ShowBookmarkBubble(
101 const GURL& url, bool already_bookmarked) OVERRIDE; 101 const GURL& url, bool already_bookmarked) OVERRIDE;
102 virtual bool IsDownloadShelfVisible() const OVERRIDE; 102 virtual bool IsDownloadShelfVisible() const OVERRIDE;
103 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; 103 virtual DownloadShelf* GetDownloadShelf() OVERRIDE;
104 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; 104 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE;
105 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) OVERRIDE; 105 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) OVERRIDE;
106 virtual void ShowThemeInstallBubble() OVERRIDE; 106 virtual void ShowThemeInstallBubble() OVERRIDE;
107 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; 107 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE;
108 virtual void ShowHTMLDialog(HtmlDialogUIDelegate* delegate, 108 virtual gfx::NativeWindow ShowHTMLDialog(HtmlDialogUIDelegate* delegate,
109 gfx::NativeWindow parent_window) OVERRIDE; 109 gfx::NativeWindow parent_window) OVERRIDE;
xiyuan 2011/08/11 16:36:47 nit: either align with arg on previous line or 4-s
yoshiki 2011/08/16 02:13:30 Done.
110 virtual void UserChangedTheme() OVERRIDE; 110 virtual void UserChangedTheme() OVERRIDE;
111 virtual int GetExtraRenderViewHeight() const OVERRIDE; 111 virtual int GetExtraRenderViewHeight() const OVERRIDE;
112 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; 112 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE;
113 virtual void ShowPageInfo(Profile* profile, 113 virtual void ShowPageInfo(Profile* profile,
114 const GURL& url, 114 const GURL& url,
115 const NavigationEntry::SSLStatus& ssl, 115 const NavigationEntry::SSLStatus& ssl,
116 bool show_history) OVERRIDE; 116 bool show_history) OVERRIDE;
117 virtual void ShowAppMenu() OVERRIDE; 117 virtual void ShowAppMenu() OVERRIDE;
118 virtual bool PreHandleKeyboardEvent( 118 virtual bool PreHandleKeyboardEvent(
119 const NativeWebKeyboardEvent& event, 119 const NativeWebKeyboardEvent& event,
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 // Platform specifc implementation for panels. It'd be one of 180 // Platform specifc implementation for panels. It'd be one of
181 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. 181 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa.
182 NativePanel* native_panel_; // Weak, owns us. 182 NativePanel* native_panel_; // Weak, owns us.
183 183
184 ExpansionState expansion_state_; 184 ExpansionState expansion_state_;
185 185
186 DISALLOW_COPY_AND_ASSIGN(Panel); 186 DISALLOW_COPY_AND_ASSIGN(Panel);
187 }; 187 };
188 188
189 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ 189 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698