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_LOGIN_WEB_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/timer.h" | 12 #include "base/timer.h" |
13 #include "chrome/browser/ui/views/dom_view.h" | 13 #include "chrome/browser/ui/views/dom_view.h" |
14 #include "content/browser/tab_contents/tab_contents.h" | 14 #include "content/browser/tab_contents/tab_contents.h" |
15 #include "views/view.h" | 15 #include "ui/views/view.h" |
16 | 16 |
17 class Profile; | 17 class Profile; |
18 class TabContentsDelegate; | 18 class TabContentsDelegate; |
19 | 19 |
20 namespace views { | 20 namespace views { |
21 class Label; | 21 class Label; |
22 class Throbber; | 22 class Throbber; |
23 } // namespace views | 23 } // namespace views |
24 | 24 |
25 namespace chromeos { | 25 namespace chromeos { |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 // Timer used before toggling loaded page visibility. | 135 // Timer used before toggling loaded page visibility. |
136 base::OneShotTimer<WebPageView> stop_timer_; | 136 base::OneShotTimer<WebPageView> stop_timer_; |
137 | 137 |
138 DISALLOW_COPY_AND_ASSIGN(WebPageView); | 138 DISALLOW_COPY_AND_ASSIGN(WebPageView); |
139 }; | 139 }; |
140 | 140 |
141 } // namespace chromeos | 141 } // namespace chromeos |
142 | 142 |
143 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ | 143 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ |
OLD | NEW |