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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/sync/
sync_promo_ui.cc 7 #include "chrome/browser/profiles/profile.h"
10 bool SyncPromoUI::ShouldShowSyncPromo(Profile* profile) {
12 if (!signin::ShouldShowPromo(profile)) {
17 if (!profile->IsSyncAccessible())
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);
  /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...]
  /external/chromium_org/chrome/browser/sync/test/integration/
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...]
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...]
  /external/chromium_org/apps/
app_launch_for_metro_restart_win.h 12 class Profile;
18 void HandleAppLaunchForMetroRestart(Profile* profile);
21 void SetAppLaunchForMetroRestart(Profile* profile,
  /external/chromium_org/chrome/browser/chromeos/profiles/
profile_util.cc 7 #include "chrome/browser/profiles/profile.h"
12 bool IsProfileAssociatedWithGaiaAccount(Profile* profile) {
17 if (profile->IsOffTheRecord())
profile_util.h 8 class Profile;
12 // Checks if the current log-in state and the profile is GAIA-authenticated and
15 bool IsProfileAssociatedWithGaiaAccount(Profile* profile);
  /external/chromium_org/chrome/browser/extensions/api/bluetooth/
bluetooth_extension_function.cc 10 #include "chrome/browser/profiles/profile.h"
19 extensions::ExtensionBluetoothEventRouter* GetEventRouter(Profile* profile) {
20 return extensions::BluetoothAPI::Get(profile)->bluetooth_event_router();
23 bool IsBluetoothSupported(Profile* profile) {
24 return GetEventRouter(profile)->IsBluetoothSupported();
29 Profile* profile) {
30 GetEventRouter(profile)->GetAdapter(callback)
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_service_factory.h 9 #include "chrome/browser/profiles/profile.h"
14 // Profiles. Listens for the Profile's destruction notification and cleans up
18 // Returns the session service for |profile|. This may return NULL. If this
19 // profile supports a session service (it isn't incognito), and the session
23 // This returns NULL if the profile is incognito. Callers should always check
25 static SessionService* GetForProfile(Profile* profile);
27 // Returns the session service for |profile|, but do not create it if it
28 // doesn't exist. This returns NULL if the profile is incognito or if session
31 static SessionService* GetForProfileIfExisting(Profile* profile)
    [all...]
session_service_factory.cc 7 #include "chrome/browser/profiles/profile.h"
12 SessionService* SessionServiceFactory::GetForProfile(Profile* profile) {
18 GetInstance()->GetServiceForBrowserContext(profile, true));
24 Profile* profile) {
30 GetInstance()->GetServiceForBrowserContext(profile, false));
35 void SessionServiceFactory::ShutdownForProfile(Profile* profile) {
40 factory->GetServiceForBrowserContext(profile, true)
    [all...]
tab_restore_service_factory.h 12 class Profile;
15 // Profiles. Listens for the Profile's destruction notification and cleans up
19 static TabRestoreService* GetForProfile(Profile* profile);
23 static TabRestoreService* GetForProfileIfExisting(Profile* profile);
25 static void ResetForProfile(Profile* profile);
37 content::BrowserContext* profile) const OVERRIDE;
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/third_party/WebKit/Source/core/html/
HTMLHeadElement.idl 21 [Reflect] attribute DOMString profile;
  /external/chromium/chrome/browser/
background_mode_manager_factory.cc 9 #include "chrome/browser/profiles/profile.h"
14 Profile* profile) {
16 GetInstance()->GetServiceForProfile(profile));
32 Profile* profile) const {
33 return new BackgroundModeManager(profile, CommandLine::ForCurrentProcess());
  /external/chromium/chrome/browser/chromeos/frame/
dom_browser.cc 14 DOMBrowser::DOMBrowser(Profile* profile)
15 : Browser(Browser::TYPE_NORMAL, profile) {
22 DOMBrowser* DOMBrowser::CreateForDOM(Profile* profile) {
23 DOMBrowser* browser = new DOMBrowser(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/chrome/browser/ui/cocoa/
keystone_infobar.h 9 class Profile;
21 static void PromotionInfoBar(Profile* profile);
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
drive_test_util.h 8 class Profile;
13 // Waits until Drive mount point for |profile| is added. Drive mount point is
16 void WaitUntilDriveMountPointIsAdded(Profile* profile);
  /external/chromium_org/chrome/browser/first_run/
first_run_dialog.h 8 class Profile;
14 bool ShowFirstRunDialog(Profile* profile);
  /external/chromium_org/chrome/browser/signin/
signin_ui_util.h 13 class Profile;
22 GlobalError* GetSignedInServiceError(Profile* profile);
25 std::vector<GlobalError*> GetSignedInServiceErrors(Profile* profile);
29 string16 GetSigninMenuLabel(Profile* profile);
31 void GetStatusLabelsForAuthError(Profile* profile,
  /external/chromium_org/chrome/browser/ui/cocoa/
keystone_infobar_delegate.h 8 class Profile;
20 static void PromotionInfoBar(Profile* profile);
  /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/instant/
instant_confirm_dialog.cc 10 #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);

Completed in 398 milliseconds

1 2 3 4 5 6 7 8 91011>>