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

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

Issue 6881073: Cleanup popup related browser navigation code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and merge with avi's popup block changes. Created 9 years, 8 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
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/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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 344
345 WindowOpenDisposition Panel::GetDispositionForPopupBounds(
346 const gfx::Rect& bounds) {
347 NOTIMPLEMENTED();
348 return NEW_POPUP;
349 }
350
345 #if defined(OS_CHROMEOS) 351 #if defined(OS_CHROMEOS)
346 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { 352 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) {
347 NOTIMPLEMENTED(); 353 NOTIMPLEMENTED();
348 } 354 }
349 #endif 355 #endif
350 356
351 void Panel::DestroyBrowser() { 357 void Panel::DestroyBrowser() {
352 NOTIMPLEMENTED(); 358 NOTIMPLEMENTED();
353 } 359 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698