OLD | NEW |
1 // Copyright (c) 2010 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/timer.h" | 11 #include "base/timer.h" |
12 #include "chrome/browser/tab_contents/tab_contents.h" | 12 #include "chrome/browser/tab_contents/tab_contents.h" |
13 #include "chrome/browser/views/dom_view.h" | 13 #include "chrome/browser/ui/views/dom_view.h" |
14 #include "views/view.h" | 14 #include "views/view.h" |
15 | 15 |
16 class Profile; | 16 class Profile; |
17 class SiteContents; | 17 class SiteContents; |
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 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 135 |
136 // Timer used before toggling loaded page visibility. | 136 // Timer used before toggling loaded page visibility. |
137 base::OneShotTimer<WebPageView> stop_timer_; | 137 base::OneShotTimer<WebPageView> stop_timer_; |
138 | 138 |
139 DISALLOW_COPY_AND_ASSIGN(WebPageView); | 139 DISALLOW_COPY_AND_ASSIGN(WebPageView); |
140 }; | 140 }; |
141 | 141 |
142 } // namespace chromeos | 142 } // namespace chromeos |
143 | 143 |
144 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ | 144 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_VIEW_H_ |
OLD | NEW |