| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 314 |
| 315 bool Panel::IsToolbarVisible() const { | 315 bool Panel::IsToolbarVisible() const { |
| 316 NOTIMPLEMENTED(); | 316 NOTIMPLEMENTED(); |
| 317 return false; | 317 return false; |
| 318 } | 318 } |
| 319 | 319 |
| 320 void Panel::DisableInactiveFrame() { | 320 void Panel::DisableInactiveFrame() { |
| 321 NOTIMPLEMENTED(); | 321 NOTIMPLEMENTED(); |
| 322 } | 322 } |
| 323 | 323 |
| 324 void Panel::ConfirmSetDefaultSearchProvider( | 324 void Panel::ConfirmSetDefaultSearchProvider(TabContents* tab_contents, |
| 325 TabContents* tab_contents, | 325 TemplateURL* template_url, |
| 326 TemplateURL* template_url, | 326 Profile* profile) { |
| 327 TemplateURLService* template_url_service) { | |
| 328 NOTIMPLEMENTED(); | 327 NOTIMPLEMENTED(); |
| 329 } | 328 } |
| 330 | 329 |
| 331 void Panel::ConfirmAddSearchProvider(const TemplateURL* template_url, | 330 void Panel::ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 332 Profile* profile) { | 331 Profile* profile) { |
| 333 NOTIMPLEMENTED(); | 332 NOTIMPLEMENTED(); |
| 334 } | 333 } |
| 335 | 334 |
| 336 void Panel::ToggleBookmarkBar() { | 335 void Panel::ToggleBookmarkBar() { |
| 337 NOTIMPLEMENTED(); | 336 NOTIMPLEMENTED(); |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 RequestRenderViewHostToDisableScrollbars(GetRenderViewHost()); | 561 RequestRenderViewHostToDisableScrollbars(GetRenderViewHost()); |
| 563 } | 562 } |
| 564 | 563 |
| 565 Browser* Panel::browser() const { | 564 Browser* Panel::browser() const { |
| 566 return native_panel_->GetPanelBrowser(); | 565 return native_panel_->GetPanelBrowser(); |
| 567 } | 566 } |
| 568 | 567 |
| 569 void Panel::DestroyBrowser() { | 568 void Panel::DestroyBrowser() { |
| 570 native_panel_->DestroyPanelBrowser(); | 569 native_panel_->DestroyPanelBrowser(); |
| 571 } | 570 } |
| OLD | NEW |