OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 } | 444 } |
445 | 445 |
446 void Panel::FocusAppMenu() { | 446 void Panel::FocusAppMenu() { |
447 NOTIMPLEMENTED(); | 447 NOTIMPLEMENTED(); |
448 } | 448 } |
449 | 449 |
450 void Panel::FocusBookmarksToolbar() { | 450 void Panel::FocusBookmarksToolbar() { |
451 NOTIMPLEMENTED(); | 451 NOTIMPLEMENTED(); |
452 } | 452 } |
453 | 453 |
454 void Panel::FocusChromeOSStatus() { | |
455 NOTIMPLEMENTED(); | |
456 } | |
457 | |
458 void Panel::RotatePaneFocus(bool forwards) { | 454 void Panel::RotatePaneFocus(bool forwards) { |
459 NOTIMPLEMENTED(); | 455 NOTIMPLEMENTED(); |
460 } | 456 } |
461 | 457 |
462 bool Panel::IsBookmarkBarVisible() const { | 458 bool Panel::IsBookmarkBarVisible() const { |
463 return false; | 459 return false; |
464 } | 460 } |
465 | 461 |
466 bool Panel::IsBookmarkBarAnimating() const { | 462 bool Panel::IsBookmarkBarAnimating() const { |
467 return false; | 463 return false; |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 } | 746 } |
751 | 747 |
752 void Panel::OnTitlebarClicked(panel::ClickModifier modifier) { | 748 void Panel::OnTitlebarClicked(panel::ClickModifier modifier) { |
753 if (panel_strip_) | 749 if (panel_strip_) |
754 panel_strip_->OnPanelTitlebarClicked(this, modifier); | 750 panel_strip_->OnPanelTitlebarClicked(this, modifier); |
755 } | 751 } |
756 | 752 |
757 void Panel::DestroyBrowser() { | 753 void Panel::DestroyBrowser() { |
758 native_panel_->DestroyPanelBrowser(); | 754 native_panel_->DestroyPanelBrowser(); |
759 } | 755 } |
OLD | NEW |