Home | History | Annotate | Download | only in integration

Lines Matching refs:Profile

13 class Profile;
17 // Returns true iff the profile with index |index| has the same apps (hosted,
25 // Installs the app for the given index to |profile|, and returns the extension
27 std::string InstallApp(Profile* profile, int index);
29 // Installs the platform app for the given index to |profile|, and returns the
32 std::string InstallPlatformApp(Profile* profile, int index);
38 // Uninstalls the app for the given index from |profile|. Assumes that it was
40 void UninstallApp(Profile* profile, int index);
42 // Installs all pending synced apps for |profile|.
43 void InstallAppsPendingForSync(Profile* profile);
45 // Enables the app for the given index on |profile|.
46 void EnableApp(Profile* profile, int index);
48 // Disables the app for the given index on |profile|.
49 void DisableApp(Profile* profile, int index);
51 // Enables the app for the given index in incognito mode on |profile|.
52 void IncognitoEnableApp(Profile* profile, int index);
54 // Disables the app for the given index in incognito mode on |profile|.
55 void IncognitoDisableApp(Profile* profile, int index);
58 // |profile|.
59 syncer::StringOrdinal GetPageOrdinalForApp(Profile* profile, int app_index);
62 // on |profile|.
64 Profile* profile, int app_index,
68 // |profile|.
70 Profile* profile, int app_index);
73 // on |profile|.
75 Profile* profile, int app_index,
81 // profile in situations where the other profiles have conflicting values.
82 void CopyNTPOrdinals(Profile* source, Profile* destination, int index);
84 // Fix any NTP icon collisions that are currently in |profile|.
85 void FixNTPOrdinalCollisions(Profile* profile);