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

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

Issue 10008058: Remove obsolete chromeos specific code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 8 years, 8 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/frame/browser_view.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) 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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/views/frame/browser_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698