| 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();
|
|
|