| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 } | 304 } |
| 305 | 305 |
| 306 void Panel::ShowThemeInstallBubble() { | 306 void Panel::ShowThemeInstallBubble() { |
| 307 NOTIMPLEMENTED(); | 307 NOTIMPLEMENTED(); |
| 308 } | 308 } |
| 309 | 309 |
| 310 void Panel::ConfirmBrowserCloseWithPendingDownloads() { | 310 void Panel::ConfirmBrowserCloseWithPendingDownloads() { |
| 311 NOTIMPLEMENTED(); | 311 NOTIMPLEMENTED(); |
| 312 } | 312 } |
| 313 | 313 |
| 314 void Panel::ShowHTMLDialog(HtmlDialogUIDelegate* delegate, | 314 gfx::NativeWindow Panel::ShowHTMLDialog(HtmlDialogUIDelegate* delegate, |
| 315 gfx::NativeWindow parent_window) { | 315 gfx::NativeWindow parent_window) { |
| 316 NOTIMPLEMENTED(); | 316 NOTIMPLEMENTED(); |
| 317 return NULL; |
| 317 } | 318 } |
| 318 | 319 |
| 319 void Panel::UserChangedTheme() { | 320 void Panel::UserChangedTheme() { |
| 320 native_panel_->NotifyPanelOnUserChangedTheme(); | 321 native_panel_->NotifyPanelOnUserChangedTheme(); |
| 321 } | 322 } |
| 322 | 323 |
| 323 int Panel::GetExtraRenderViewHeight() const { | 324 int Panel::GetExtraRenderViewHeight() const { |
| 324 NOTIMPLEMENTED(); | 325 NOTIMPLEMENTED(); |
| 325 return -1; | 326 return -1; |
| 326 } | 327 } |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 } | 428 } |
| 428 #endif | 429 #endif |
| 429 | 430 |
| 430 Browser* Panel::browser() const { | 431 Browser* Panel::browser() const { |
| 431 return native_panel_->GetPanelBrowser(); | 432 return native_panel_->GetPanelBrowser(); |
| 432 } | 433 } |
| 433 | 434 |
| 434 void Panel::DestroyBrowser() { | 435 void Panel::DestroyBrowser() { |
| 435 native_panel_->DestroyPanelBrowser(); | 436 native_panel_->DestroyPanelBrowser(); |
| 436 } | 437 } |
| OLD | NEW |