| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 | 335 |
| 336 void Panel::HideInstant(bool instant_is_active) { | 336 void Panel::HideInstant(bool instant_is_active) { |
| 337 NOTIMPLEMENTED(); | 337 NOTIMPLEMENTED(); |
| 338 } | 338 } |
| 339 | 339 |
| 340 gfx::Rect Panel::GetInstantBounds() { | 340 gfx::Rect Panel::GetInstantBounds() { |
| 341 NOTIMPLEMENTED(); | 341 NOTIMPLEMENTED(); |
| 342 return gfx::Rect(); | 342 return gfx::Rect(); |
| 343 } | 343 } |
| 344 | 344 |
| 345 WindowOpenDisposition Panel::GetDispositionForPopupBounds( |
| 346 const gfx::Rect& bounds) { |
| 347 NOTIMPLEMENTED(); |
| 348 return NEW_POPUP; |
| 349 } |
| 350 |
| 345 #if defined(OS_CHROMEOS) | 351 #if defined(OS_CHROMEOS) |
| 346 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { | 352 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { |
| 347 NOTIMPLEMENTED(); | 353 NOTIMPLEMENTED(); |
| 348 } | 354 } |
| 349 #endif | 355 #endif |
| 350 | 356 |
| 351 void Panel::DestroyBrowser() { | 357 void Panel::DestroyBrowser() { |
| 352 NOTIMPLEMENTED(); | 358 NOTIMPLEMENTED(); |
| 353 } | 359 } |
| OLD | NEW |