| 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 #ifndef CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_BROWSER_DOM_BROWSER_VIEW_LAYOUT_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_VIEW_LAYOUT_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_BROWSER_DOM_BROWSER_VIEW_LAYOUT_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_VIEW_LAYOUT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/chromeos/webui/login/browser/dom_browser_view.h" | 10 #include "chrome/browser/chromeos/frame/dom_browser_view.h" |
| 11 #include "chrome/browser/chromeos/status/status_area_host.h" | 11 #include "chrome/browser/chromeos/status/status_area_host.h" |
| 12 #include "chrome/browser/ui/views/frame/browser_view_layout.h" | 12 #include "chrome/browser/ui/views/frame/browser_view_layout.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 | 15 |
| 16 class DOMBrowserView; | 16 class DOMBrowserView; |
| 17 class StatusAreaView; | 17 class StatusAreaView; |
| 18 | 18 |
| 19 // LayoutManager for DOMBrowserView, which lays out the StatusAreaView in the | 19 // LayoutManager for DOMBrowserView, which lays out the StatusAreaView in the |
| 20 // top corner and ommits the other elements that have been removed from the | 20 // top corner and ommits the other elements that have been removed from the |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 // Lays out tabstrip and status area in the title bar area (given by | 68 // Lays out tabstrip and status area in the title bar area (given by |
| 69 // |bounds|). | 69 // |bounds|). |
| 70 int LayoutTitlebarComponents(const gfx::Rect& bounds); | 70 int LayoutTitlebarComponents(const gfx::Rect& bounds); |
| 71 | 71 |
| 72 DISALLOW_COPY_AND_ASSIGN(DOMBrowserViewLayout); | 72 DISALLOW_COPY_AND_ASSIGN(DOMBrowserViewLayout); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace chromeos | 75 } // namespace chromeos |
| 76 | 76 |
| 77 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_BROWSER_DOM_BROWSER_VIEW_LAYOUT_H
_ | 77 #endif // CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_VIEW_LAYOUT_H_ |
| OLD | NEW |