/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/search/ |
hotword_service.cc | 7 #include "chrome/browser/profiles/profile.h" 10 HotwordService::HotwordService(Profile* profile) 11 : 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/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 22 // |profile|. 24 // This returns NULL if the profile is incognito. Callers should always check 26 static SessionService* GetForProfile(Profile* profile); 28 // Returns the session service for |profile|, but do not create it if it 29 // doesn't exist. This returns NULL if the profile is incognito or if sessio [all...] |
session_data_deleter.h | 8 class Profile; 13 void DeleteSessionOnlyData(Profile* profile);
|
session_service_factory.cc | 7 #include "chrome/browser/profiles/profile.h" 13 SessionService* SessionServiceFactory::GetForProfile(Profile* profile) { 19 GetInstance()->GetServiceForBrowserContext(profile, true)); 25 Profile* profile) { 31 GetInstance()->GetServiceForBrowserContext(profile, false)); 37 Profile* profile) { 38 SessionService* service = GetForProfile(profile); [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/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/ |
extension_install_ui.cc | 10 ExtensionInstallUI::ExtensionInstallUI(Profile* profile) 11 : profile_(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/ |
file_browser_private_api.cc | 21 FileBrowserPrivateAPI::FileBrowserPrivateAPI(Profile* profile) 22 : event_router_(new EventRouter(profile)) { 34 FileBrowserPrivateAPI* FileBrowserPrivateAPI::Get(Profile* profile) { 35 return FileBrowserPrivateAPIFactory::GetForProfile(profile);
|
/external/chromium_org/chrome/browser/chromeos/extensions/ |
wallpaper_manager_util.cc | 11 #include "chrome/browser/profiles/profile.h" 24 Profile* profile = ProfileManager::GetActiveUserProfile(); local 25 DCHECK(profile); 28 extensions::ExtensionSystem::Get(profile)->extension_service(); 37 OpenApplication(AppLaunchParams(profile, extension,
|
/external/chromium_org/chrome/browser/chromeos/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/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
|