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

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

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/panels/panel.h ('k') | chrome/browser/ui/views/browser_dialogs.h » ('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 #include "chrome/browser/ui/panels/panel.h" 5 #include "chrome/browser/ui/panels/panel.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/extensions/extension_prefs.h" 8 #include "chrome/browser/extensions/extension_prefs.h"
9 #include "chrome/browser/extensions/extension_service.h" 9 #include "chrome/browser/extensions/extension_service.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 } 309 }
310 310
311 tabbed_browser->window()->Show(); // Ensure download shelf is visible. 311 tabbed_browser->window()->Show(); // Ensure download shelf is visible.
312 return tabbed_browser->window()->GetDownloadShelf(); 312 return tabbed_browser->window()->GetDownloadShelf();
313 } 313 }
314 314
315 void Panel::ShowRepostFormWarningDialog(TabContents* tab_contents) { 315 void Panel::ShowRepostFormWarningDialog(TabContents* tab_contents) {
316 NOTIMPLEMENTED(); 316 NOTIMPLEMENTED();
317 } 317 }
318 318
319 void Panel::ShowCollectedCookiesDialog(TabContents* tab_contents) { 319 void Panel::ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) {
320 NOTIMPLEMENTED(); 320 NOTIMPLEMENTED();
321 } 321 }
322 322
323 void Panel::ShowThemeInstallBubble() { 323 void Panel::ShowThemeInstallBubble() {
324 NOTIMPLEMENTED(); 324 NOTIMPLEMENTED();
325 } 325 }
326 326
327 void Panel::ConfirmBrowserCloseWithPendingDownloads() { 327 void Panel::ConfirmBrowserCloseWithPendingDownloads() {
328 NOTIMPLEMENTED(); 328 NOTIMPLEMENTED();
329 } 329 }
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 } 445 }
446 #endif 446 #endif
447 447
448 Browser* Panel::browser() const { 448 Browser* Panel::browser() const {
449 return native_panel_->GetPanelBrowser(); 449 return native_panel_->GetPanelBrowser();
450 } 450 }
451 451
452 void Panel::DestroyBrowser() { 452 void Panel::DestroyBrowser() {
453 native_panel_->DestroyPanelBrowser(); 453 native_panel_->DestroyPanelBrowser();
454 } 454 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/views/browser_dialogs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698