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

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

Issue 7566016: Fullscreen support for Lion. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' 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/chrome_browser.gypi » ('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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 } 376 }
377 377
378 void Panel::ToggleTabStripMode() { 378 void Panel::ToggleTabStripMode() {
379 NOTIMPLEMENTED(); 379 NOTIMPLEMENTED();
380 } 380 }
381 381
382 #if defined(OS_MACOSX) 382 #if defined(OS_MACOSX)
383 void Panel::OpenTabpose() { 383 void Panel::OpenTabpose() {
384 NOTIMPLEMENTED(); 384 NOTIMPLEMENTED();
385 } 385 }
386
387 void Panel::SetPresentationMode(bool presentation_mode) {
388 NOTIMPLEMENTED();
389 }
390
391 bool Panel::InPresentationMode() {
392 NOTIMPLEMENTED();
393 return false;
394 }
386 #endif 395 #endif
387 396
388 void Panel::PrepareForInstant() { 397 void Panel::PrepareForInstant() {
389 NOTIMPLEMENTED(); 398 NOTIMPLEMENTED();
390 } 399 }
391 400
392 void Panel::ShowInstant(TabContentsWrapper* preview) { 401 void Panel::ShowInstant(TabContentsWrapper* preview) {
393 NOTIMPLEMENTED(); 402 NOTIMPLEMENTED();
394 } 403 }
395 404
(...skipping 18 matching lines...) Expand all
414 } 423 }
415 #endif 424 #endif
416 425
417 Browser* Panel::browser() const { 426 Browser* Panel::browser() const {
418 return native_panel_->GetPanelBrowser(); 427 return native_panel_->GetPanelBrowser();
419 } 428 }
420 429
421 void Panel::DestroyBrowser() { 430 void Panel::DestroyBrowser() {
422 native_panel_->DestroyPanelBrowser(); 431 native_panel_->DestroyPanelBrowser();
423 } 432 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698