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

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

Issue 7831051: content: Move collected cookies constrained window to TabContentsWrapper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Compile failures for everyone\! Created 9 years, 3 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
« no previous file with comments | « chrome/browser/ui/gtk/collected_cookies_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) 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 virtual void ToggleBookmarkBar() OVERRIDE; 96 virtual void ToggleBookmarkBar() OVERRIDE;
97 virtual void ShowAboutChromeDialog() OVERRIDE; 97 virtual void ShowAboutChromeDialog() OVERRIDE;
98 virtual void ShowUpdateChromeDialog() OVERRIDE; 98 virtual void ShowUpdateChromeDialog() OVERRIDE;
99 virtual void ShowTaskManager() OVERRIDE; 99 virtual void ShowTaskManager() OVERRIDE;
100 virtual void ShowBackgroundPages() OVERRIDE; 100 virtual void ShowBackgroundPages() OVERRIDE;
101 virtual void ShowBookmarkBubble( 101 virtual void ShowBookmarkBubble(
102 const GURL& url, bool already_bookmarked) OVERRIDE; 102 const GURL& url, bool already_bookmarked) OVERRIDE;
103 virtual bool IsDownloadShelfVisible() const OVERRIDE; 103 virtual bool IsDownloadShelfVisible() const OVERRIDE;
104 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; 104 virtual DownloadShelf* GetDownloadShelf() OVERRIDE;
105 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; 105 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE;
106 virtual void ShowCollectedCookiesDialog(TabContents* tab_contents) OVERRIDE; 106 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE;
107 virtual void ShowThemeInstallBubble() OVERRIDE; 107 virtual void ShowThemeInstallBubble() OVERRIDE;
108 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; 108 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE;
109 virtual gfx::NativeWindow ShowHTMLDialog( 109 virtual gfx::NativeWindow ShowHTMLDialog(
110 HtmlDialogUIDelegate* delegate, 110 HtmlDialogUIDelegate* delegate,
111 gfx::NativeWindow parent_window) OVERRIDE; 111 gfx::NativeWindow parent_window) OVERRIDE;
112 virtual void UserChangedTheme() OVERRIDE; 112 virtual void UserChangedTheme() OVERRIDE;
113 virtual int GetExtraRenderViewHeight() const OVERRIDE; 113 virtual int GetExtraRenderViewHeight() const OVERRIDE;
114 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE; 114 virtual void TabContentsFocused(TabContents* tab_contents) OVERRIDE;
115 virtual void ShowPageInfo(Profile* profile, 115 virtual void ShowPageInfo(Profile* profile,
116 const GURL& url, 116 const GURL& url,
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 // Platform specifc implementation for panels. It'd be one of 182 // Platform specifc implementation for panels. It'd be one of
183 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa. 183 // PanelBrowserWindowGtk/PanelBrowserView/PanelBrowserWindowCocoa.
184 NativePanel* native_panel_; // Weak, owns us. 184 NativePanel* native_panel_; // Weak, owns us.
185 185
186 ExpansionState expansion_state_; 186 ExpansionState expansion_state_;
187 187
188 DISALLOW_COPY_AND_ASSIGN(Panel); 188 DISALLOW_COPY_AND_ASSIGN(Panel);
189 }; 189 };
190 190
191 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ 191 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/collected_cookies_gtk.cc ('k') | chrome/browser/ui/panels/panel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698