| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 301 |
| 302 void Panel::ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) { | 302 void Panel::ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) { |
| 303 NOTIMPLEMENTED(); | 303 NOTIMPLEMENTED(); |
| 304 } | 304 } |
| 305 | 305 |
| 306 void Panel::ShowCreateChromeAppShortcutsDialog(Profile* profile, | 306 void Panel::ShowCreateChromeAppShortcutsDialog(Profile* profile, |
| 307 const Extension* app) { | 307 const Extension* app) { |
| 308 NOTIMPLEMENTED(); | 308 NOTIMPLEMENTED(); |
| 309 } | 309 } |
| 310 | 310 |
| 311 void Panel::ToggleUseCompactNavigationBar() { |
| 312 NOTIMPLEMENTED(); |
| 313 } |
| 314 |
| 311 void Panel::Cut() { | 315 void Panel::Cut() { |
| 312 NOTIMPLEMENTED(); | 316 NOTIMPLEMENTED(); |
| 313 } | 317 } |
| 314 | 318 |
| 315 void Panel::Copy() { | 319 void Panel::Copy() { |
| 316 NOTIMPLEMENTED(); | 320 NOTIMPLEMENTED(); |
| 317 } | 321 } |
| 318 | 322 |
| 319 void Panel::Paste() { | 323 void Panel::Paste() { |
| 320 NOTIMPLEMENTED(); | 324 NOTIMPLEMENTED(); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 | 359 |
| 356 #if defined(OS_CHROMEOS) | 360 #if defined(OS_CHROMEOS) |
| 357 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { | 361 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { |
| 358 NOTIMPLEMENTED(); | 362 NOTIMPLEMENTED(); |
| 359 } | 363 } |
| 360 #endif | 364 #endif |
| 361 | 365 |
| 362 void Panel::DestroyBrowser() { | 366 void Panel::DestroyBrowser() { |
| 363 NOTIMPLEMENTED(); | 367 NOTIMPLEMENTED(); |
| 364 } | 368 } |
| OLD | NEW |