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/webui/login/browser/dom_browser_view_layout.h" | 5 #include "chrome/browser/chromeos/frame/dom_browser_view_layout.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "chrome/browser/chromeos/status/status_area_view.h" | 9 #include "chrome/browser/chromeos/status/status_area_view.h" |
10 #include "chrome/browser/chromeos/view_ids.h" | 10 #include "chrome/browser/chromeos/view_ids.h" |
11 #include "views/window/hit_test.h" | 11 #include "views/window/hit_test.h" |
12 | 12 |
13 namespace chromeos { | 13 namespace chromeos { |
14 | 14 |
15 // DOMBrowserViewLayout public: ------------------------------------------------ | 15 // DOMBrowserViewLayout public: ------------------------------------------------ |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 status_size.width(), | 88 status_size.width(), |
89 status_size.height()); | 89 status_size.height()); |
90 return status_size.height(); | 90 return status_size.height(); |
91 } | 91 } |
92 | 92 |
93 const DOMBrowserView* DOMBrowserViewLayout::GetDOMBrowserView() { | 93 const DOMBrowserView* DOMBrowserViewLayout::GetDOMBrowserView() { |
94 return static_cast<DOMBrowserView*>(browser_view_); | 94 return static_cast<DOMBrowserView*>(browser_view_); |
95 } | 95 } |
96 | 96 |
97 } // namespace chromeos | 97 } // namespace chromeos |
OLD | NEW |