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

Unified Diff: chrome/browser/ui/panels/panel_view.cc

Issue 10908153: [Panel refactor] Deprecate old panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix linux_chromeos test failure Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/panels/panel_view.h ('k') | chrome/browser/ui/panels/panel_window_controller_cocoa.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/panels/panel_view.cc
diff --git a/chrome/browser/ui/panels/panel_view.cc b/chrome/browser/ui/panels/panel_view.cc
index 2509b8f6de46dc0cac5d1e23fa745cc7f652c246..6055f5339edabab284085c4c779addb85d4d65bf 100644
--- a/chrome/browser/ui/panels/panel_view.cc
+++ b/chrome/browser/ui/panels/panel_view.cc
@@ -304,11 +304,6 @@ void PanelView::UpdatePanelLoadingAnimations(bool should_animate) {
GetFrameView()->UpdateThrobber();
}
-FindBar* PanelView::CreatePanelFindBar() {
- NOTREACHED(); // legacy API from browser window. N/A for refactored panels.
- return NULL;
-}
-
void PanelView::NotifyPanelOnUserChangedTheme() {
GetFrameView()->SchedulePaint();
}
@@ -348,12 +343,6 @@ bool PanelView::IsDrawingAttention() const {
return is_drawing_attention_;
}
-bool PanelView::PreHandlePanelKeyboardEvent(
- const content::NativeWebKeyboardEvent& event,
- bool* is_keyboard_shortcut) {
- return false;
-}
-
void PanelView::HandlePanelKeyboardEvent(
const content::NativeWebKeyboardEvent& event) {
views::FocusManager* focus_manager = GetFocusManager();
@@ -377,15 +366,6 @@ void PanelView::FullScreenModeChanged(bool is_full_screen) {
}
}
-Browser* PanelView::GetPanelBrowser() const {
- NOTREACHED(); // legacy API from BrowserWindow. N/A for refactored panels.
- return NULL;
-}
-
-void PanelView::EnsurePanelFullyVisible() {
- // This method is going to be removed.
-}
-
void PanelView::SetPanelAlwaysOnTop(bool on_top) {
window_->SetAlwaysOnTop(on_top);
window_->non_client_view()->Layout();
« no previous file with comments | « chrome/browser/ui/panels/panel_view.h ('k') | chrome/browser/ui/panels/panel_window_controller_cocoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698