| 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/aura/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/extension_function_dispatcher.h" | 9 #include "chrome/browser/extensions/extension_function_dispatcher.h" |
| 10 #include "chrome/browser/extensions/extension_tab_util.h" | 10 #include "chrome/browser/extensions/extension_tab_util.h" |
| 11 #include "chrome/browser/extensions/extension_tabs_module_constants.h" | 11 #include "chrome/browser/extensions/extension_tabs_module_constants.h" |
| 12 #include "chrome/browser/extensions/extension_window_controller.h" | 12 #include "chrome/browser/extensions/extension_window_controller.h" |
| 13 #include "chrome/browser/extensions/extension_window_list.h" | 13 #include "chrome/browser/extensions/extension_window_list.h" |
| 14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
| 15 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 } | 402 } |
| 403 | 403 |
| 404 void PanelViewAura::SetBounds(const gfx::Rect& bounds) { | 404 void PanelViewAura::SetBounds(const gfx::Rect& bounds) { |
| 405 GetWidget()->SetBounds(bounds); | 405 GetWidget()->SetBounds(bounds); |
| 406 } | 406 } |
| 407 | 407 |
| 408 void PanelViewAura::FlashFrame(bool flash) { | 408 void PanelViewAura::FlashFrame(bool flash) { |
| 409 // TODO(stevenjb): Implement | 409 // TODO(stevenjb): Implement |
| 410 NOTIMPLEMENTED(); | 410 NOTIMPLEMENTED(); |
| 411 } | 411 } |
| OLD | NEW |