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

Side by Side Diff: chrome/browser/ui/views/ash/panel_view_aura.cc

Issue 10822004: Draggable region support for frameless app window on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/views/ash/panel_view_aura.h" 5 #include "chrome/browser/ui/views/ash/panel_view_aura.h"
6 6
7 #include "ash/wm/panel_frame_view.h" 7 #include "ash/wm/panel_frame_view.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" 9 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
10 #include "chrome/browser/extensions/extension_function_dispatcher.h" 10 #include "chrome/browser/extensions/extension_function_dispatcher.h"
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 void PanelViewAura::Restore() { 441 void PanelViewAura::Restore() {
442 // TODO(stevenjb): Implement this properly. 442 // TODO(stevenjb): Implement this properly.
443 GetWidget()->Restore(); 443 GetWidget()->Restore();
444 NOTIMPLEMENTED(); 444 NOTIMPLEMENTED();
445 } 445 }
446 446
447 void PanelViewAura::SetBounds(const gfx::Rect& bounds) { 447 void PanelViewAura::SetBounds(const gfx::Rect& bounds) {
448 GetWidget()->SetBounds(bounds); 448 GetWidget()->SetBounds(bounds);
449 } 449 }
450 450
451 void PanelViewAura::SetDraggableRegion(SkRegion* region) {
452 NOTIMPLEMENTED();
453 }
454
455 void PanelViewAura::FlashFrame(bool flash) { 451 void PanelViewAura::FlashFrame(bool flash) {
456 // TODO(stevenjb): Implement 452 // TODO(stevenjb): Implement
457 NOTIMPLEMENTED(); 453 NOTIMPLEMENTED();
458 } 454 }
459 455
460 bool PanelViewAura::IsAlwaysOnTop() const { 456 bool PanelViewAura::IsAlwaysOnTop() const {
461 return true; 457 return true;
462 } 458 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698