Searched refs:profile (Results 1 - 25 of 3831) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/sync/
H A Dsync_promo_ui.cc7 #include "chrome/browser/profiles/profile.h"
10 bool SyncPromoUI::ShouldShowSyncPromo(Profile* profile) { argument
12 if (!signin::ShouldShowPromo(profile)) {
17 if (!profile->IsSyncAccessible())
/external/chromium_org/chrome/browser/ui/
H A Dbrowser_mac.h17 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);
22 void OpenSyncSetupWindow(Profile* profile, signin::Source source);
23 void OpenClearBrowsingDataDialogWindow(Profile* profile);
24 void OpenImportSettingsDialogWindow(Profile* profile);
25 void OpenBookmarkManagerWindow(Profile* profile);
26 void OpenExtensionsWindow(Profile* profile);
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dthemes_helper.cc26 ThemeService* GetThemeService(Profile* profile) { argument
27 return ThemeServiceFactory::GetForProfile(profile);
38 std::string GetThemeID(Profile* profile) { argument
39 return GetThemeService(profile)->GetThemeID();
42 bool UsingCustomTheme(Profile* profile) { argument
43 return GetThemeID(profile) != ThemeService::kDefaultThemeID;
46 bool UsingDefaultTheme(Profile* profile) { argument
47 return GetThemeService(profile)->UsingDefaultTheme();
50 bool UsingNativeTheme(Profile* profile) { argument
51 return GetThemeService(profile)
54 ThemeIsPendingInstall(Profile* profile, const std::string& id) argument
59 HasOrWillHaveCustomTheme(Profile* profile, const std::string& id) argument
63 UseCustomTheme(Profile* profile, int index) argument
68 UseDefaultTheme(Profile* profile) argument
72 UseNativeTheme(Profile* profile) argument
[all...]
H A Dthemes_helper.h21 // 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, cons
[all...]
H A Dextensions_helper.h19 // 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);
46 // Installs all pending synced extensions for |profile|.
47 void InstallExtensionsPendingForSync(Profile* profile);
49 // Enables the extension for the given index on |profile|
[all...]
H A Dapps_helper.cc9 #include "chrome/browser/profiles/profile.h"
36 " verifier profile.";
43 std::string InstallApp(Profile* profile, int index) { argument
45 profile,
50 std::string InstallPlatformApp(Profile* profile, int index) { argument
52 profile,
63 void UninstallApp(Profile* profile, int index) { argument
65 profile, CreateFakeAppName(index));
68 void EnableApp(Profile* profile, int index) { argument
70 profile, CreateFakeAppNam
73 DisableApp(Profile* profile, int index) argument
78 IncognitoEnableApp(Profile* profile, int index) argument
83 IncognitoDisableApp(Profile* profile, int index) argument
88 InstallAppsPendingForSync(Profile* profile) argument
92 GetPageOrdinalForApp(Profile* profile, int app_index) argument
98 SetPageOrdinalForApp(Profile* profile, int app_index, const syncer::StringOrdinal& page_ordinal) argument
105 GetAppLaunchOrdinalForApp(Profile* profile, int app_index) argument
111 SetAppLaunchOrdinalForApp( Profile* profile, int app_index, const syncer::StringOrdinal& app_launch_ordinal) argument
125 FixNTPOrdinalCollisions(Profile* profile) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/profiles/
H A Dprofile_util.cc7 #include "chrome/browser/profiles/profile.h"
12 bool IsProfileAssociatedWithGaiaAccount(Profile* profile) { argument
17 if (profile->IsOffTheRecord())
/external/chromium_org/chrome/browser/extensions/api/bluetooth/
H A Dbluetooth_extension_function.cc10 #include "chrome/browser/profiles/profile.h"
19 extensions::ExtensionBluetoothEventRouter* GetEventRouter(Profile* profile) { argument
20 return extensions::BluetoothAPI::Get(profile)->bluetooth_event_router();
23 bool IsBluetoothSupported(Profile* profile) { argument
24 return GetEventRouter(profile)->IsBluetoothSupported();
29 Profile* profile) {
30 GetEventRouter(profile)->GetAdapter(callback);
46 if (!IsBluetoothSupported(profile())) {
51 profile());
27 GetAdapter( const device::BluetoothAdapterFactory::AdapterCallback callback, Profile* profile) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLHeadElement.idl21 [Reflect] attribute DOMString profile;
/external/chromium_org/chrome/browser/sessions/
H A Dsession_service_factory.cc7 #include "chrome/browser/profiles/profile.h"
12 SessionService* SessionServiceFactory::GetForProfile(Profile* profile) { argument
18 GetInstance()->GetServiceForBrowserContext(profile, true));
24 Profile* profile) {
30 GetInstance()->GetServiceForBrowserContext(profile, false));
35 void SessionServiceFactory::ShutdownForProfile(Profile* profile) { argument
40 factory->GetServiceForBrowserContext(profile, true);
44 factory->BrowserContextShutdown(profile);
45 factory->BrowserContextDestroyed(profile);
46 factory->Associate(profile, NUL
23 GetForProfileIfExisting( Profile* profile) argument
[all...]
H A Dtab_restore_service_factory.cc7 #include "chrome/browser/profiles/profile.h"
12 TabRestoreService* TabRestoreServiceFactory::GetForProfile(Profile* profile) { argument
14 GetInstance()->GetServiceForBrowserContext(profile, true));
19 Profile* profile) {
21 GetInstance()->GetServiceForBrowserContext(profile, false));
25 void TabRestoreServiceFactory::ResetForProfile(Profile* profile) { argument
27 factory->BrowserContextShutdown(profile);
28 factory->BrowserContextDestroyed(profile);
18 GetForProfileIfExisting( Profile* profile) argument
/external/chromium/chrome/browser/
H A Dbackground_mode_manager_factory.cc9 #include "chrome/browser/profiles/profile.h"
14 Profile* profile) {
16 GetInstance()->GetServiceForProfile(profile));
32 Profile* profile) const {
33 return new BackgroundModeManager(profile, CommandLine::ForCurrentProcess());
13 GetForProfile( Profile* profile) argument
/external/chromium/chrome/browser/chromeos/frame/
H A Ddom_browser.cc14 DOMBrowser::DOMBrowser(Profile* profile) argument
15 : Browser(Browser::TYPE_NORMAL, profile) {
22 DOMBrowser* DOMBrowser::CreateForDOM(Profile* profile) { argument
23 DOMBrowser* browser = new DOMBrowser(profile);
/external/chromium/chrome/browser/tabs/
H A Dpinned_tab_service_factory.cc8 #include "chrome/browser/profiles/profile.h"
13 Profile* profile) {
15 GetInstance()->GetServiceForProfile(profile));
30 Profile* profile) const {
31 return new PinnedTabService(profile);
12 GetForProfile( Profile* profile) argument
/external/chromium_org/apps/
H A Dsaved_files_service_factory.cc8 #include "chrome/browser/profiles/profile.h"
14 SavedFilesService* SavedFilesServiceFactory::GetForProfile(Profile* profile) { argument
16 GetInstance()->GetServiceForBrowserContext(profile, true));
32 content::BrowserContext* profile) const {
33 return new SavedFilesService(static_cast<Profile*>(profile));
/external/chromium_org/chrome/browser/managed_mode/
H A Dcustodian_profile_downloader_service_factory.cc8 #include "chrome/browser/profiles/profile.h"
14 Profile* profile) {
16 GetInstance()->GetServiceForBrowserContext(profile, true));
37 content::BrowserContext* profile) const {
38 return new CustodianProfileDownloaderService(static_cast<Profile*>(profile));
13 GetForProfile( Profile* profile) argument
H A Dmanaged_user_sync_service_factory.cc8 #include "chrome/browser/profiles/profile.h"
13 Profile* profile) {
15 GetInstance()->GetServiceForBrowserContext(profile, true));
33 content::BrowserContext* profile) const {
34 return new ManagedUserSyncService(static_cast<Profile*>(profile)->GetPrefs());
12 GetForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/predictors/
H A Dpredictor_database_factory.cc9 #include "chrome/browser/profiles/profile.h"
15 PredictorDatabase* PredictorDatabaseFactory::GetForProfile(Profile* profile) { argument
17 GetInstance()->GetServiceForBrowserContext(profile, true));
34 content::BrowserContext* profile) const {
35 return new PredictorDatabase(static_cast<Profile*>(profile));
/external/chromium_org/chrome/browser/profiles/
H A Dstartup_task_runner_service_factory.cc7 #include "chrome/browser/profiles/profile.h"
21 Profile* profile) {
23 GetInstance()->GetServiceForBrowserContext(profile, true));
34 content::BrowserContext* profile) const {
35 return new StartupTaskRunnerService(static_cast<Profile*>(profile));
20 GetForProfile( Profile* profile) argument
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Dlogin_ui_service_factory.cc22 LoginUIService* LoginUIServiceFactory::GetForProfile(Profile* profile) { argument
24 GetInstance()->GetServiceForBrowserContext(profile, true));
33 content::BrowserContext* profile) const {
34 return new LoginUIService(static_cast<Profile*>(profile));
/external/javasqlite/src/main/java/SQLite/
H A DProfile.java4 * Callback interface for SQLite's profile function.
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/instant/
H A Dinstant_confirm_dialog.cc10 #include "chrome/browser/profiles/profile.h"
23 Profile* profile) {
24 PrefService* prefs = profile->GetPrefs();
28 PromoCounter* promo_counter = profile->GetInstantPromoCounter();
33 InstantController::Enable(profile);
37 ShowInstantConfirmDialog(parent, profile);
22 ShowInstantConfirmDialogIfNecessary(gfx::NativeWindow parent, Profile* profile) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/
H A DOmniboxPrerender.java32 * @param profile profile instance corresponding to the active profile.
34 public void clear(Profile profile) { argument
35 nativeClear(mNativeOmniboxPrerender, profile);
39 * Initializes the underlying action predictor for a given profile instance. This should be
43 * @param profile profile instance corresponding to active profile.
45 public void initializeForProfile(Profile profile) { argument
60 prerenderMaybe(String url, String currentUrl, int nativeAutocompleteResult, Profile profile, int nativeWebContents) argument
67 nativeClear(int nativeOmniboxPrerender, Profile profile) argument
68 nativeInitializeForProfile( int nativeOmniboxPrerender, Profile profile) argument
71 nativePrerenderMaybe(int nativeOmniboxPrerender, String url, String currentUrl, int nativeAutocompleteResult, Profile profile, int nativeWebContents) argument
[all...]
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_change.cc21 Type type, const std::string& key, const AutofillProfile* profile)
23 profile_(profile) {
24 DCHECK(type == ADD ? (profile && profile->guid() == key) : true);
25 DCHECK(type == UPDATE ? (profile && profile->guid() == key) : true);
26 DCHECK(type == REMOVE ? !profile : true);
36 (type() != REMOVE) ? *profile() == *change.profile() : true;
20 AutofillProfileChange( Type type, const std::string& key, const AutofillProfile* profile) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_profile.cc49 chromeos::BluetoothProfileChromeOS* profile = NULL; local
50 profile = new chromeos::BluetoothProfileChromeOS();
51 profile->Init(uuid, options, callback);
53 BluetoothProfile* profile = NULL;
56 profile = new BluetoothProfileMac(uuid, options.name);
57 callback.Run(profile);
59 BluetoothProfile* profile = NULL;
60 profile = new BluetoothProfileWin(uuid, options.name);
61 callback.Run(profile);

Completed in 853 milliseconds

1234567891011>>