Home | History | Annotate | Download | only in integration

Lines Matching full:profile

14 class Profile;
21 // Gets the ID of |profile|'s theme.
22 std::string GetThemeID(Profile* profile) WARN_UNUSED_RESULT;
24 // Returns true iff |profile| is using a custom theme.
25 bool UsingCustomTheme(Profile* profile) WARN_UNUSED_RESULT;
27 // Returns true iff |profile| is using the default theme.
28 bool UsingDefaultTheme(Profile* profile) WARN_UNUSED_RESULT;
30 // Returns true iff |profile| is using the native theme.
31 bool UsingNativeTheme(Profile* profile) WARN_UNUSED_RESULT;
34 // |profile|.
36 Profile* profile, const std::string& id) WARN_UNUSED_RESULT;
38 // Returns true iff |profile|'s current theme is the given
41 Profile* profile, const std::string& id) WARN_UNUSED_RESULT;
43 // Sets |profile| to use the custom theme with the given index.
44 void UseCustomTheme(Profile* profile, int index);
46 // Sets |profile| to use the default theme.
47 void UseDefaultTheme(Profile* profile);
49 // Sets |profile| to use the native theme.
50 void UseNativeTheme(Profile* profile);