Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: chrome/browser/chromeos/login/web_page_screen.h

Issue 8538002: Cleanup: Remove unneeded forward declarations from chrome/browser/chromeos. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_SCREEN_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_SCREEN_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_SCREEN_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_SCREEN_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/timer.h" 9 #include "base/timer.h"
10 #include "chrome/browser/chromeos/login/screen_observer.h" 10 #include "chrome/browser/chromeos/login/screen_observer.h"
11 #include "content/browser/tab_contents/tab_contents_delegate.h" 11 #include "content/browser/tab_contents/tab_contents_delegate.h"
12 12
13 class GURL;
14
15 namespace chromeos { 13 namespace chromeos {
16 14
17 // Base class for wizard screen that holds web page. 15 // Base class for wizard screen that holds web page.
18 class WebPageScreen : public TabContentsDelegate { 16 class WebPageScreen : public TabContentsDelegate {
19 public: 17 public:
20 explicit WebPageScreen(); 18 explicit WebPageScreen();
21 virtual ~WebPageScreen(); 19 virtual ~WebPageScreen();
22 20
23 // Exits from the screen with the specified exit code. 21 // Exits from the screen with the specified exit code.
24 virtual void CloseScreen(ScreenObserver::ExitCodes code) = 0; 22 virtual void CloseScreen(ScreenObserver::ExitCodes code) = 0;
(...skipping 16 matching lines...) Expand all
41 private: 39 private:
42 // Timer used for network response timeout. 40 // Timer used for network response timeout.
43 base::OneShotTimer<WebPageScreen> timeout_timer_; 41 base::OneShotTimer<WebPageScreen> timeout_timer_;
44 42
45 DISALLOW_COPY_AND_ASSIGN(WebPageScreen); 43 DISALLOW_COPY_AND_ASSIGN(WebPageScreen);
46 }; 44 };
47 45
48 } // namespace chromeos 46 } // namespace chromeos
49 47
50 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_SCREEN_H_ 48 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEB_PAGE_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698