| 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/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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 } | 376 } |
| 377 | 377 |
| 378 void Panel::ToggleTabStripMode() { | 378 void Panel::ToggleTabStripMode() { |
| 379 NOTIMPLEMENTED(); | 379 NOTIMPLEMENTED(); |
| 380 } | 380 } |
| 381 | 381 |
| 382 #if defined(OS_MACOSX) | 382 #if defined(OS_MACOSX) |
| 383 void Panel::OpenTabpose() { | 383 void Panel::OpenTabpose() { |
| 384 NOTIMPLEMENTED(); | 384 NOTIMPLEMENTED(); |
| 385 } | 385 } |
| 386 |
| 387 void Panel::SetPresentationMode(bool presentation_mode) { |
| 388 NOTIMPLEMENTED(); |
| 389 } |
| 390 |
| 391 bool Panel::InPresentationMode() { |
| 392 NOTIMPLEMENTED(); |
| 393 return false; |
| 394 } |
| 386 #endif | 395 #endif |
| 387 | 396 |
| 388 void Panel::PrepareForInstant() { | 397 void Panel::PrepareForInstant() { |
| 389 NOTIMPLEMENTED(); | 398 NOTIMPLEMENTED(); |
| 390 } | 399 } |
| 391 | 400 |
| 392 void Panel::ShowInstant(TabContentsWrapper* preview) { | 401 void Panel::ShowInstant(TabContentsWrapper* preview) { |
| 393 NOTIMPLEMENTED(); | 402 NOTIMPLEMENTED(); |
| 394 } | 403 } |
| 395 | 404 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 414 } | 423 } |
| 415 #endif | 424 #endif |
| 416 | 425 |
| 417 Browser* Panel::browser() const { | 426 Browser* Panel::browser() const { |
| 418 return native_panel_->GetPanelBrowser(); | 427 return native_panel_->GetPanelBrowser(); |
| 419 } | 428 } |
| 420 | 429 |
| 421 void Panel::DestroyBrowser() { | 430 void Panel::DestroyBrowser() { |
| 422 native_panel_->DestroyPanelBrowser(); | 431 native_panel_->DestroyPanelBrowser(); |
| 423 } | 432 } |
| OLD | NEW |