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

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

Issue 8404007: Delete code for and references to mini-gallery and theme install bubbles. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 } 398 }
399 399
400 void Panel::ShowRepostFormWarningDialog(TabContents* tab_contents) { 400 void Panel::ShowRepostFormWarningDialog(TabContents* tab_contents) {
401 NOTIMPLEMENTED(); 401 NOTIMPLEMENTED();
402 } 402 }
403 403
404 void Panel::ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) { 404 void Panel::ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) {
405 NOTIMPLEMENTED(); 405 NOTIMPLEMENTED();
406 } 406 }
407 407
408 void Panel::ShowThemeInstallBubble() {
409 NOTIMPLEMENTED();
410 }
411
412 void Panel::ConfirmBrowserCloseWithPendingDownloads() { 408 void Panel::ConfirmBrowserCloseWithPendingDownloads() {
413 NOTIMPLEMENTED(); 409 NOTIMPLEMENTED();
414 } 410 }
415 411
416 void Panel::UserChangedTheme() { 412 void Panel::UserChangedTheme() {
417 native_panel_->NotifyPanelOnUserChangedTheme(); 413 native_panel_->NotifyPanelOnUserChangedTheme();
418 } 414 }
419 415
420 int Panel::GetExtraRenderViewHeight() const { 416 int Panel::GetExtraRenderViewHeight() const {
421 // This is currently used only on Linux and that returns the height for 417 // This is currently used only on Linux and that returns the height for
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 RequestRenderViewHostToDisableScrollbars(GetRenderViewHost()); 579 RequestRenderViewHostToDisableScrollbars(GetRenderViewHost());
584 } 580 }
585 581
586 Browser* Panel::browser() const { 582 Browser* Panel::browser() const {
587 return native_panel_->GetPanelBrowser(); 583 return native_panel_->GetPanelBrowser();
588 } 584 }
589 585
590 void Panel::DestroyBrowser() { 586 void Panel::DestroyBrowser() {
591 native_panel_->DestroyPanelBrowser(); 587 native_panel_->DestroyPanelBrowser();
592 } 588 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698