HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 1 - 25 of 7858) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/
browser_mac.h 11 class Profile;
17 void OpenAboutWindow(Profile* profile);
18 void OpenHistoryWindow(Profile* profile);
19 void OpenDownloadsWindow(Profile* profile);
20 void OpenHelpWindow(Profile* profile, HelpSource source);
21 void OpenOptionsWindow(Profile* profile)
    [all...]
browser_mac.cc 7 #include "chrome/browser/profiles/profile.h"
14 void OpenAboutWindow(Profile* profile) {
16 new Browser(Browser::CreateParams(profile,
22 void OpenHistoryWindow(Profile* profile) {
24 new Browser(Browser::CreateParams(profile,
30 void OpenDownloadsWindow(Profile* profile) {
32 new Browser(Browser::CreateParams(profile,
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
themes_helper.h 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
    [all...]
themes_helper.cc 26 ThemeService* GetThemeService(Profile* profile) {
27 return ThemeServiceFactory::GetForProfile(profile);
38 std::string GetThemeID(Profile* profile) {
39 return GetThemeService(profile)->GetThemeID();
42 bool UsingCustomTheme(Profile* profile) {
43 return GetThemeID(profile) != ThemeService::kDefaultThemeID;
46 bool UsingDefaultTheme(Profile* profile)
    [all...]
extensions_helper.h 15 class Profile;
19 // Returns true iff the profile with index |index| has the same extensions
30 // Installs the extension for the given index to |profile|, and returns the
32 std::string InstallExtension(Profile* profile, int index);
38 // Uninstalls the extension for the given index from |profile|. Assumes that
40 void UninstallExtension(Profile* profile, int index);
43 // test extensions on |profile|.
44 std::vector<int> GetInstalledExtensions(Profile* profile)
    [all...]
apps_helper.cc 9 #include "chrome/browser/profiles/profile.h"
35 LOG(ERROR) << "Profile " << i << " doesn't have the same apps as the"
36 " verifier profile.";
43 std::string InstallApp(Profile* profile, int index) {
45 profile,
50 std::string InstallPlatformApp(Profile* profile, int index) {
52 profile,
63 void UninstallApp(Profile* profile, int index)
    [all...]
apps_helper.h 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)
    [all...]
sync_extension_helper.h 18 class Profile;
34 // Installs the extension with the given name to |profile|, and returns the
36 std::string InstallExtension(Profile* profile,
40 // Uninstalls the extension with the given name from |profile|.
41 void UninstallExtension(Profile* profile, const std::string& name);
44 // on |profile|.
45 std::vector<std::string> GetInstalledExtensionNames(Profile* profile) const
    [all...]
autofill_helper.h 36 // Used to access the web data service within a particular sync profile.
40 // Used to access the personal data manager within a particular sync profile.
44 // Adds the form fields in |keys| to the WebDataService of sync profile
45 // |profile|.
46 void AddKeys(int profile, const std::set<autofill::AutofillKey>& keys);
48 // Removes the form field in |key| from the WebDataService of sync profile
49 // |profile|.
50 void RemoveKey(int profile, const autofill::AutofillKey& key);
52 // Removes all of the keys from the WebDataService of sync profile |profile|
    [all...]
  /external/chromium_org/chrome/browser/history/
history_service_factory.cc 17 Profile* profile, Profile::ServiceAccessType sat) {
19 if (profile->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled) &&
20 sat != Profile::EXPLICIT_ACCESS)
24 GetInstance()->GetServiceForBrowserContext(profile, true));
30 Profile* profile, Profile::ServiceAccessType sat) {
32 if (profile->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled) &
70 Profile* profile = static_cast<Profile*>(context); local
    [all...]
shortcuts_backend_factory.cc 9 #include "chrome/browser/profiles/profile.h"
17 Profile* profile) {
19 GetInstance()->GetServiceForBrowserContext(profile, true).get());
24 Profile* profile) {
26 GetInstance()->GetServiceForBrowserContext(profile, false).get());
37 content::BrowserContext* profile) {
39 new ShortcutsBackend(static_cast<Profile*>(profile), false))
    [all...]
  /external/chromium_org/chromeos/test/data/network/policy/
shill_unmanaged_user_wifi1_wo_uidata.json 5 "Profile": "/profile/chronos/shill",
shill_unmanaged_user_wifi2.json 5 "Profile": "/profile/chronos/shill",
  /external/chromium/chrome/browser/profiles/
profile_keyed_service_factory.cc 10 #include "chrome/browser/profiles/profile.h"
26 Profile* profile) {
28 if (profile->IsOffTheRecord()) {
30 profile = profile->GetOriginalProfile();
40 std::map<Profile*, ProfileKeyedService*>::iterator it =
41 mapping_.find(profile);
49 service = factory_(profile);
51 service = BuildServiceInstanceFor(profile);
    [all...]
profile_manager.h 20 #include "chrome/browser/profiles/profile.h"
30 public Profile::Delegate {
34 // This method is called when profile is ready. If profile creation has been
35 // failed, method is called with |profile| equals to NULL.
36 virtual void OnProfileCreated(Profile* profile) = 0;
45 // Returns the default profile. This adds the profile to the
47 // the profile doesn't exist and we can't create it
127 scoped_ptr<Profile> profile; member in struct:ProfileManager::ProfileInfo
    [all...]
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_factory.cc 7 #include "chrome/browser/profiles/profile.h"
12 TabRestoreService* TabRestoreServiceFactory::GetForProfile(Profile* profile) {
14 GetInstance()->GetServiceForBrowserContext(profile, true));
19 Profile* profile) {
21 GetInstance()->GetServiceForBrowserContext(profile, false));
25 void TabRestoreServiceFactory::ResetForProfile(Profile* profile) {
27 factory->BrowserContextShutdown(profile);
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
user_cloud_policy_manager_factory.cc 11 #include "chrome/browser/profiles/profile.h"
24 Profile* profile) {
25 return GetInstance()->GetManagerForProfile(profile);
30 UserCloudPolicyManagerFactory::CreateForProfile(Profile* profile,
32 return GetInstance()->CreateManagerForProfile(profile, force_immediate_load);
43 Profile* profile) {
44 // Get the manager for the original profile, since the PolicyService i
69 Profile* profile = static_cast<Profile*>(context); local
    [all...]
  /external/chromium/chrome/browser/
background_contents_service_unittest.cc 32 const DictionaryValue* GetPrefs(Profile* profile) {
33 return profile->GetPrefs()->GetDictionary(
37 void ClearPrefs(Profile* profile) {
38 profile->GetPrefs()->ClearPref(prefs::kRegisteredBackgroundContents);
42 std::string GetPrefURLForApp(Profile* profile, const string16& appid) {
43 const DictionaryValue* pref = GetPrefs(profile);
57 explicit MockBackgroundContents(Profile* profile
111 TestingProfile profile; local
116 TestingProfile profile; local
127 TestingProfile profile; local
153 TestingProfile profile; local
172 TestingProfile profile; local
202 TestingProfile profile; local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
about_chrome_dialog.h 9 class Profile;
12 // Displays the about box, using data copied from |profile|.
13 void ShowAboutDialogForProfile(GtkWindow* parent, Profile* profile);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
OWNERS 1 per-file heap-profile*=dmikurube@chromium.org
2 per-file heap-profile*=glider@chromium.org
3 per-file deep-heap-profile*=dmikurube@chromium.org
4 per-file deep-heap-profile*=glider@chromium.org
  /external/javasqlite/src/main/java/SQLite/
Profile.java 4 * Callback interface for SQLite's profile function.
7 public interface Profile {
10 * Callback to profile (ie log) one SQL statement
17 public void profile(String stmt, long est); method in interface:Profile
  /external/chromium/chrome/browser/tabs/
pinned_tab_service_factory.cc 8 #include "chrome/browser/profiles/profile.h"
13 Profile* profile) {
15 GetInstance()->GetServiceForProfile(profile));
30 Profile* profile) const {
31 return new PinnedTabService(profile);
  /external/chromium_org/chrome/browser/background/
background_contents_service_unittest.cc 34 const DictionaryValue* GetPrefs(Profile* profile) {
35 return profile->GetPrefs()->GetDictionary(
40 std::string GetPrefURLForApp(Profile* profile, const string16& appid) {
41 const DictionaryValue* pref = GetPrefs(profile);
55 explicit MockBackgroundContents(Profile* profile)
57 profile_(profile) {
59 MockBackgroundContents(Profile* profile, const std::string& id
109 TestingProfile profile; local
114 TestingProfile profile; local
125 TestingProfile profile; local
152 TestingProfile profile; local
173 TestingProfile profile; local
205 TestingProfile profile; local
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
app_sync_ui_state_factory.cc 7 #include "chrome/browser/profiles/profile.h"
13 AppSyncUIState* AppSyncUIStateFactory::GetForProfile(Profile* profile) {
14 if (!AppSyncUIState::ShouldObserveAppSyncForProfile(profile))
18 GetInstance()->GetServiceForBrowserContext(profile, true));
38 Profile* profile = static_cast<Profile*>(context); local
39 DCHECK(AppSyncUIState::ShouldObserveAppSyncForProfile(profile));
40 return new AppSyncUIState(profile);
    [all...]
  /external/chromium_org/chrome/browser/ui/sync/
sync_promo_ui.h 8 class Profile;
14 // |profile| is the profile for which the promo would be displayed.
15 static bool ShouldShowSyncPromo(Profile* profile);

Completed in 514 milliseconds

1 2 3 4 5 6 7 8 91011>>