HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 1 - 25 of 8053) 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/chromeos/test/data/network/policy/
shill_unmanaged_ethernet_eap.json 3 "Profile": "/profile/user1/shill",
shill_disallow_autoconnect_on_unmanaged_wifi2.json 4 "Profile": "/profile/user1/shill",
shill_policy_on_unmanaged_ethernet_eap.json 4 "Profile": "/profile/user1/shill",
shill_unmanaged_wifi1_wo_uidata.json 5 "Profile": "/profile/user1/shill",
shill_unmanaged_wifi2.json 5 "Profile": "/profile/user1/shill",
  /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...]
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.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/notifications/
desktop_notification_profile_util.h 11 class Profile;
13 // A series of common operations to interact with the profile's Desktop
18 static void ResetToDefaultContentSetting(Profile* profile);
22 Profile* profile, const ContentSettingsPattern& pattern);
25 static void GrantPermission(Profile* profile, const GURL& origin);
26 static void DenyPermission(Profile* profile, const GURL& origin)
    [all...]
desktop_notification_profile_util.cc 8 #include "chrome/browser/profiles/profile.h"
13 Profile* profile) {
14 profile->GetHostContentSettingsMap()->SetDefaultContentSetting(
20 Profile* profile, const ContentSettingsPattern& pattern) {
21 profile->GetHostContentSettingsMap()->SetContentSetting(
32 Profile* profile, const GURL& origin) {
35 profile->GetHostContentSettingsMap()->SetContentSetting
    [all...]
  /external/compiler-rt/lib/profile/
CMakeLists.txt 1 add_custom_target(profile)
16 add_dependencies(profile clang_rt.profile_osx)
19 add_compiler_rt_runtime(clang_rt.profile-${arch} ${arch} STATIC
21 add_dependencies(profile clang_rt.profile-${arch})
23 add_compiler_rt_runtime(clang_rt.profile-pic-${arch} ${arch} STATIC
26 add_dependencies(profile clang_rt.profile-pic-${arch})
30 add_dependencies(compiler-rt profile)
  /external/compiler-rt/test/profile/
CMakeLists.txt 6 list(APPEND PROFILE_TEST_DEPS profile llvm-profdata)
13 add_lit_testsuite(check-profile "Running the profile tests"
16 set_target_properties(check-profile PROPERTIES FOLDER "Profile tests")
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_mock.cc 19 ProfileSyncServiceMock::ProfileSyncServiceMock(Profile* profile)
23 profile,
25 profile,
26 SigninManagerFactory::GetForProfile(profile))),
27 ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
32 scoped_ptr<ProfileSyncComponentsFactory> factory, Profile* profile)
35 profile,
37 profile,
48 TestingProfile* profile = new TestingProfile(); local
    [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/android/java/src/org/chromium/chrome/browser/prerender/
ExternalPrerenderHandler.java 9 import org.chromium.chrome.browser.profiles.Profile;
23 public long addPrerender(Profile profile, String url, String referrer, int width, int height) {
25 if (nativeAddPrerender(mNativeExternalPrerenderHandler, profile, webContentsPtr,
37 public static boolean hasPrerenderedUrl(Profile profile, String url, long webContentsPtr) {
38 return nativeHasPrerenderedUrl(profile, url, webContentsPtr);
41 public static boolean hasCookieStoreLoaded(Profile profile) {
42 return nativeHasCookieStoreLoaded(profile);
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_backend_factory.cc 9 #include "chrome/browser/profiles/profile.h"
15 Profile* profile) {
17 GetInstance()->GetServiceForBrowserContext(profile, true).get());
22 Profile* profile) {
24 GetInstance()->GetServiceForBrowserContext(profile, false).get());
35 content::BrowserContext* profile) {
37 new ShortcutsBackend(static_cast<Profile*>(profile), false))
    [all...]
  /external/chromium_org/chrome/browser/dom_distiller/
profile_utils.h 8 #include "chrome/browser/profiles/profile.h"
11 // |profile|.
12 void RegisterDomDistillerViewerSource(Profile* profile);
  /external/chromium_org/chrome/browser/ui/app_list/test/
fake_profile_store.cc 7 #include "chrome/browser/profiles/profile.h"
16 void FakeProfileStore::LoadProfile(Profile* profile) {
17 loaded_profiles_[profile->GetPath()] = profile;
18 CallbacksByPath::iterator it = callbacks_.find(profile->GetPath());
20 it->second.Run(profile);
25 void FakeProfileStore::RemoveProfile(Profile* profile) {
26 base::FilePath path(profile->GetPath())
42 Profile* profile = GetProfileByPath(path); local
    [all...]
  /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_org/chrome/browser/webdata/
web_data_service_factory.h 11 #include "chrome/browser/profiles/profile.h"
27 // A wrapper of WebDataService so that we can use it as a profile keyed service.
30 explicit WebDataServiceWrapper(Profile* profile);
68 // Returns the WebDataServiceWrapper associated with the |profile|.
70 Profile* profile,
71 Profile::ServiceAccessType access_type);
74 Profile* profile,
    [all...]

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 91011>>