| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |