OLD | NEW |
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/chromeos/frame/panel_browser_view.h" | 5 #include "chrome/browser/chromeos/frame/panel_browser_view.h" |
6 | 6 |
7 #include "chrome/browser/chromeos/frame/browser_view.h" | 7 #include "chrome/browser/chromeos/frame/browser_view.h" |
8 #include "chrome/browser/chromeos/frame/panel_controller.h" | 8 #include "chrome/browser/chromeos/frame/panel_controller.h" |
9 #include "third_party/cros/chromeos_wm_ipc_enums.h" | 9 #include "third_party/cros/chromeos_wm_ipc_enums.h" |
10 #include "views/widget/widget.h" | 10 #include "views/widget/widget.h" |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 } | 149 } |
150 | 150 |
151 void PanelBrowserView::ClosePanel() { | 151 void PanelBrowserView::ClosePanel() { |
152 Close(); | 152 Close(); |
153 } | 153 } |
154 | 154 |
155 void PanelBrowserView::ActivatePanel() { | 155 void PanelBrowserView::ActivatePanel() { |
156 Activate(); | 156 Activate(); |
157 } | 157 } |
158 | 158 |
159 void PanelBrowserView::OnPanelStateChanged(PanelController::State state) { | |
160 } | |
161 | |
162 } // namespace chromeos | 159 } // namespace chromeos |
OLD | NEW |