| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |