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

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

Issue 6913026: Compact Navigation prototype (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Clang build fix. After commit/revert. Created 9 years, 7 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/panels/panel_browser_window_cocoa.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) 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/ui/browser.h" 8 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/panels/panel_manager.h" 9 #include "chrome/browser/ui/panels/panel_manager.h"
10 #include "ui/gfx/rect.h" 10 #include "ui/gfx/rect.h"
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 300
301 void Panel::ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) { 301 void Panel::ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) {
302 NOTIMPLEMENTED(); 302 NOTIMPLEMENTED();
303 } 303 }
304 304
305 void Panel::ShowCreateChromeAppShortcutsDialog(Profile* profile, 305 void Panel::ShowCreateChromeAppShortcutsDialog(Profile* profile,
306 const Extension* app) { 306 const Extension* app) {
307 NOTIMPLEMENTED(); 307 NOTIMPLEMENTED();
308 } 308 }
309 309
310 void Panel::ToggleUseCompactNavigationBar() {
311 NOTIMPLEMENTED();
312 }
313
310 void Panel::Cut() { 314 void Panel::Cut() {
311 NOTIMPLEMENTED(); 315 NOTIMPLEMENTED();
312 } 316 }
313 317
314 void Panel::Copy() { 318 void Panel::Copy() {
315 NOTIMPLEMENTED(); 319 NOTIMPLEMENTED();
316 } 320 }
317 321
318 void Panel::Paste() { 322 void Panel::Paste() {
319 NOTIMPLEMENTED(); 323 NOTIMPLEMENTED();
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 358
355 #if defined(OS_CHROMEOS) 359 #if defined(OS_CHROMEOS)
356 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { 360 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) {
357 NOTIMPLEMENTED(); 361 NOTIMPLEMENTED();
358 } 362 }
359 #endif 363 #endif
360 364
361 void Panel::DestroyBrowser() { 365 void Panel::DestroyBrowser() {
362 NOTIMPLEMENTED(); 366 NOTIMPLEMENTED();
363 } 367 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/panels/panel_browser_window_cocoa.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698