Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(854)

Side by Side Diff: chrome/browser/ui/panels/panel.cc

Issue 7604032: Showing Task manager on the foreground window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: to be commited Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/views/frame/browser_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/browser/ui/views/frame/browser_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698