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

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: Fix Popup tests for ChromeOS. 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 } 334 }
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 void Panel::AdjustNavigateParams(browser::NavigateParams* params) {
345 }
344 346
345 #if defined(OS_CHROMEOS) 347 #if defined(OS_CHROMEOS)
346 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) { 348 void Panel::ShowKeyboardOverlay(gfx::NativeWindow owning_window) {
347 NOTIMPLEMENTED(); 349 NOTIMPLEMENTED();
348 } 350 }
349 #endif 351 #endif
350 352
351 void Panel::DestroyBrowser() { 353 void Panel::DestroyBrowser() {
352 NOTIMPLEMENTED(); 354 NOTIMPLEMENTED();
353 } 355 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698