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

Side by Side Diff: chrome/browser/chromeos/login/screens/user_image_view.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SCREENS_USER_IMAGE_VIEW_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_VIEW_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_VIEW_H_
7 7
8 class SkBitmap;
9
10 namespace gfx {
11 class ImageSkia;
12 }
13
14 namespace chromeos { 8 namespace chromeos {
15 9
16 class UserImageModel; 10 class UserImageModel;
17 11
18 // Interface for dependency injection between UserImageScreen and its actual 12 // Interface for dependency injection between UserImageScreen and its actual
19 // representation, either views based or WebUI. 13 // representation, either views based or WebUI.
20 class UserImageView { 14 class UserImageView {
21 public: 15 public:
22 virtual ~UserImageView() {} 16 virtual ~UserImageView() {}
23 17
(...skipping 10 matching lines...) Expand all
34 // Hides the contents of the screen. 28 // Hides the contents of the screen.
35 virtual void Hide() = 0; 29 virtual void Hide() = 0;
36 30
37 // Hides curtain with spinner. 31 // Hides curtain with spinner.
38 virtual void HideCurtain() = 0; 32 virtual void HideCurtain() = 0;
39 }; 33 };
40 34
41 } // namespace chromeos 35 } // namespace chromeos
42 36
43 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_VIEW_H_ 37 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_USER_IMAGE_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/update_model.h ('k') | chrome/browser/chromeos/login/session/user_session_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698