| 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_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_BROWSER_DOM_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/chromeos/frame/browser_view.h" | 12 #include "chrome/browser/chromeos/frame/browser_view.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 | 15 |
| 16 // DOMBrowserView overides a large number of methods that are defined in | 16 // DOMBrowserView overides a large number of methods that are defined in |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 virtual views::LayoutManager* CreateLayoutManager() const OVERRIDE; | 62 virtual views::LayoutManager* CreateLayoutManager() const OVERRIDE; |
| 63 virtual ToolbarView* CreateToolbar() const OVERRIDE; | 63 virtual ToolbarView* CreateToolbar() const OVERRIDE; |
| 64 virtual void LoadingAnimationCallback() OVERRIDE; | 64 virtual void LoadingAnimationCallback() OVERRIDE; |
| 65 | 65 |
| 66 private: | 66 private: |
| 67 DISALLOW_COPY_AND_ASSIGN(DOMBrowserView); | 67 DISALLOW_COPY_AND_ASSIGN(DOMBrowserView); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 } // namespace chromeos | 70 } // namespace chromeos |
| 71 | 71 |
| 72 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_BROWSER_DOM_BROWSER_VIEW_H_ | 72 #endif // CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_VIEW_H_ |
| OLD | NEW |