| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 } | 334 } |
| 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 void Panel::AdjustNavigateParams(browser::NavigateParams* params) { |
| 345 } |
| 344 | 346 |
| 345 #if defined(OS_CHROMEOS) | 347 #if defined(OS_CHROMEOS) |
| 346 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { | 348 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { |
| 347 NOTIMPLEMENTED(); | 349 NOTIMPLEMENTED(); |
| 348 } | 350 } |
| 349 #endif | 351 #endif |
| 350 | 352 |
| 351 void Panel::DestroyBrowser() { | 353 void Panel::DestroyBrowser() { |
| 352 NOTIMPLEMENTED(); | 354 NOTIMPLEMENTED(); |
| 353 } | 355 } |
| OLD | NEW |