OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SYNC_TEST_INTEGRATION_THEMES_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_THEMES_HELPER_H_ |
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_THEMES_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_THEMES_HELPER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 bool UsingDefaultTheme(Profile* profile) WARN_UNUSED_RESULT; | 28 bool UsingDefaultTheme(Profile* profile) WARN_UNUSED_RESULT; |
29 | 29 |
30 // Returns true iff |profile| is using the system theme. | 30 // Returns true iff |profile| is using the system theme. |
31 bool UsingSystemTheme(Profile* profile) WARN_UNUSED_RESULT; | 31 bool UsingSystemTheme(Profile* profile) WARN_UNUSED_RESULT; |
32 | 32 |
33 // Returns true iff a theme with the given ID is pending install in | 33 // Returns true iff a theme with the given ID is pending install in |
34 // |profile|. | 34 // |profile|. |
35 bool ThemeIsPendingInstall( | 35 bool ThemeIsPendingInstall( |
36 Profile* profile, const std::string& id) WARN_UNUSED_RESULT; | 36 Profile* profile, const std::string& id) WARN_UNUSED_RESULT; |
37 | 37 |
38 // Returns true iff |profile|'s current theme is the given | |
39 // custom theme or if the given theme is pending install. | |
40 bool HasOrWillHaveCustomTheme( | |
41 Profile* profile, const std::string& id) WARN_UNUSED_RESULT; | |
42 | |
43 // Sets |profile| to use the custom theme with the given index. | 38 // Sets |profile| to use the custom theme with the given index. |
44 void UseCustomTheme(Profile* profile, int index); | 39 void UseCustomTheme(Profile* profile, int index); |
45 | 40 |
46 // Sets |profile| to use the default theme. | 41 // Sets |profile| to use the default theme. |
47 void UseDefaultTheme(Profile* profile); | 42 void UseDefaultTheme(Profile* profile); |
48 | 43 |
49 // Sets |profile| to use the system theme. | 44 // Sets |profile| to use the system theme. |
50 void UseSystemTheme(Profile* profile); | 45 void UseSystemTheme(Profile* profile); |
51 | 46 |
| 47 // Waits until |theme| is pending for install on |profile|. |
| 48 // Returns false in case of timeout. |
| 49 bool AwaitThemeIsPendingInstall(Profile* profile, const std::string& theme); |
| 50 |
| 51 // Waits until |profile| is using the system theme. |
| 52 // Returns false in case of timeout. |
| 53 bool AwaitUsingSystemTheme(Profile* profile); |
| 54 |
| 55 // Waits until |profile| is using the default theme. |
| 56 // Returns false in case of timeout. |
| 57 bool AwaitUsingDefaultTheme(Profile* profile); |
| 58 |
52 } // namespace themes_helper | 59 } // namespace themes_helper |
53 | 60 |
54 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_THEMES_HELPER_H_ | 61 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_THEMES_HELPER_H_ |
OLD | NEW |