HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 276 - 300 of 8345) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/options/
options_page_base.h 17 class Profile;
40 explicit OptionsPageBase(Profile* profile);
42 // Returns the Profile associated with this page.
43 Profile* profile() const { return profile_; } function in class:OptionsPageBase
56 // The Profile associated with this page.
57 Profile* profile_;
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_store.h 13 class Profile;
51 // Does |profile| support this type of ContactStore?
52 virtual bool CanCreateContactStoreForProfile(Profile* profile) = 0;
54 // Creates and returns a new, uninitialized ContactStore for |profile|.
58 // stuff contained in a Profile.
59 virtual ContactStore* CreateContactStore(Profile* profile) = 0;
  /external/chromium_org/chrome/browser/chromeos/login/
oauth2_login_manager_factory.cc 8 #include "chrome/browser/profiles/profile.h"
30 Profile* profile) {
32 GetInstance()->GetServiceForBrowserContext(profile, true));
44 Profile* profile = static_cast<Profile*>(context); local
46 service = new OAuth2LoginManager(profile);
  /external/chromium_org/chrome/browser/download/
download_test_file_activity_observer.h 10 class Profile;
12 // Observes and overrides file chooser dialog and open activity for a profile.
13 // By default, once attached to a profile, this class overrides the default file
15 // with |profile|.
16 // NOTE: Again, this overrides the ChromeDownloadManagerDelegate for |profile|.
19 // Attaches to |profile|. By default file chooser dialogs will be disabled
21 explicit DownloadTestFileActivityObserver(Profile* profile);
  /external/chromium_org/chrome/browser/extensions/
extension_web_ui_override_registrar.cc 10 #include "chrome/browser/profiles/profile.h"
17 Profile* profile) : profile_(profile) {
19 content::Source<Profile>(profile));
21 content::Source<Profile>(profile));
  /external/chromium_org/chrome/browser/history/
shortcuts_backend_factory.h 12 class Profile;
24 Profile* profile);
27 Profile* profile);
33 BuildProfileForTesting(content::BrowserContext* profile);
38 BuildProfileNoDatabaseForTesting(content::BrowserContext* profile);
48 BuildServiceInstanceFor(content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/signin/
account_reconcilor_factory.h 13 class Profile;
16 // Profiles. Listens for the Profile's destruction notification and cleans up.
19 // Returns the instance of AccountReconcilor associated with this profile
20 // (creating one if none exists). Returns NULL if this profile cannot have an
21 // AccountReconcilor (for example, if |profile| is incognito).
22 static AccountReconcilor* GetForProfile(Profile* profile);
35 content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/sync/glue/
sync_start_util.cc 10 #include "chrome/browser/profiles/profile.h"
18 void StartSyncOnUIThread(const base::FilePath& profile,
27 Profile* p = profile_manager->GetProfileByPath(profile);
29 DVLOG(2) << "Profile not found, can't start sync.";
35 DVLOG(2) << "No ProfileSyncService for profile, can't start sync.";
41 void StartSyncProxy(const base::FilePath& profile,
45 base::Bind(&StartSyncOnUIThread, profile, type));
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_service_factory.h 12 class Profile;
21 // Returns an instance of ThumbnailService associated with this profile
22 // (creating one if none exists). Returns NULL if this profile cannot have a
23 // ThumbnailService (for example, if |profile| is incognito).
25 // can be provided either by TopSites (stored in the profile itself) or
29 Profile* profile);
41 BuildServiceInstanceFor(content::BrowserContext* profile) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/app_list/
app_list_service_disabled.cc 26 virtual void Init(Profile* initial_profile) OVERRIDE {}
35 virtual void CreateForProfile(Profile* profile) OVERRIDE {}
36 virtual void ShowForProfile(Profile* profile) OVERRIDE {}
39 virtual Profile* GetCurrentAppListProfile() OVERRIDE { return NULL; }
41 virtual void EnableAppList(Profile* initial_profile) OVERRIDE {}
62 void AppListService::InitAll(Profile* initial_profile) {}
  /external/chromium_org/chrome/browser/ui/app_list/test/
fake_profile_store.h 19 void LoadProfile(Profile* profile);
20 void RemoveProfile(Profile* profile);
26 base::Callback<void(Profile*)> callback) OVERRIDE;
27 virtual Profile* GetProfileByPath(const base::FilePath& path) OVERRIDE;
33 typedef std::map<base::FilePath, base::Callback<void(Profile*)> >
37 typedef std::map<base::FilePath, Profile*> ProfilesByPath;
  /external/chromium_org/chrome/browser/ui/ash/app_list/
app_list_controller_ash.h 28 virtual void DoCreateShortcutsFlow(Profile* profile,
30 virtual void CreateNewWindow(Profile* profile, bool incognito) OVERRIDE;
31 virtual void ActivateApp(Profile* profile,
35 virtual void LaunchApp(Profile* profile,
app_list_service_ash.cc 11 #include "chrome/browser/profiles/profile.h"
34 virtual void CreateForProfile(Profile* default_profile) OVERRIDE;
35 virtual void ShowForProfile(Profile* default_profile) OVERRIDE;
38 virtual void EnableAppList(Profile* initial_profile) OVERRIDE;
40 virtual Profile* GetCurrentAppListProfile() OVERRIDE;
57 return ChromeLauncherController::instance()->profile()->GetPath();
60 void AppListServiceAsh::CreateForProfile(Profile* default_profile) {}
62 void AppListServiceAsh::ShowForProfile(Profile* default_profile) {
63 // This may not work correctly if the profile passed in is different from the
65 // TODO(ananta): Handle profile changes correctly when !defined(OS_CHROMEOS)
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_win.cc 10 #include "chrome/browser/profiles/profile.h"
19 void NewWindowMaybeMetro(Browser* source_browser, Profile* profile) {
29 Browser* browser = chrome::FindTabbedBrowser(profile, false,
33 chrome::OpenEmptyWindow(profile, host_desktop_type);
45 NewEmptyWindow(profile, host_desktop_type);
54 NewWindowMaybeMetro(browser, browser->profile()->GetOriginalProfile());
58 NewWindowMaybeMetro(browser, browser->profile()->GetOffTheRecordProfile());
  /external/chromium_org/chrome/browser/ui/sync/
inline_login_dialog.cc 7 #include "chrome/browser/profiles/profile.h"
14 void InlineLoginDialog::Show(Profile* profile) {
15 chrome::ShowWebDialog(NULL, profile, new InlineLoginDialog(profile));
18 InlineLoginDialog::InlineLoginDialog(Profile* profile)
19 : profile_(profile) {
profile_signin_confirmation_helper.cc 21 #include "chrome/browser/profiles/profile.h"
34 // Determines whether a profile has any typed URLs in its history.
46 VLOG(1) << "ProfileSigninConfirmationHelper: profile contains "
63 bool HasBookmarks(Profile* profile) {
64 BookmarkModel* bookmarks = BookmarkModelFactory::GetForProfile(profile);
67 VLOG(1) << "ProfileSigninConfirmationHelper: profile contains bookmarks";
71 // Helper functions for Chrome profile signin.
76 Profile* profile,
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_drag_data_unittest.cc 25 TestingProfile profile; local
26 profile.SetID(L"id");
37 TestingProfile profile; local
38 Profile* profile_ptr = &profile;
39 profile.SetID(L"id");
43 pickle.WriteBytes(&profile_ptr, sizeof(&profile));
53 ASSERT_TRUE(drag_data.IsFromProfile(profile.GetOriginalProfile()));
  /external/chromium_org/chrome/browser/ui/web_applications/
web_app_ui.h 21 class Profile;
29 const extensions::Extension* extension, Profile* profile);
42 // Updates the shortcut info for |extension| and |profile|.
44 Profile* profile,
51 Profile* profile,
  /external/chromium_org/chrome/browser/ui/webui/suggestions_internals/
suggestions_internals_ui.cc 7 #include "chrome/browser/profiles/profile.h"
28 Profile* profile = Profile::FromWebUI(web_ui); local
29 content::WebUIDataSource::Add(profile, html_source);
31 profile, new FaviconSource(profile, FaviconSource::FAVICON));
34 web_ui->AddMessageHandler(new SuggestionsInternalsUIHandler(profile));
  /external/chromium_org/chrome/test/base/
chrome_render_view_host_test_harness.cc 30 TestingProfile* ChromeRenderViewHostTestHarness::profile() { function in class:ChromeRenderViewHostTestHarness
40 Profile* profile = static_cast<Profile*>(context); local
43 signin->Initialize(profile, NULL);
46 FakeSigninManager* manager = new FakeSigninManager(profile);
47 manager->Initialize(profile, g_browser_process->local_state());
55 profile(), BuildSigninManagerFake);
  /external/chromium_org/chromeos/test/data/network/policy/
shill_managed_wifi1.json 8 "Profile": "/profile/user1/shill",
  /external/chromium_org/chrome/browser/ui/android/tab_model/
tab_model_unittest.cc 22 MOCK_METHOD0(GetOffTheRecordProfile, Profile*());
29 explicit TestTabModel(Profile* profile)
30 : TabModel(profile) {}
52 // Construct TabModel with standard Profile.
56 // Verify TabModel has the correct profile and profile type.
60 // Notify profile is being destroyed and verify pointer is cleared.
63 content::Source<Profile>(&testing_profile),
69 // Construct TabModel with off-the-record Profile
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
app_sync_ui_state.h 18 class Profile;
23 // normal user profile (i.e. it does not watch for guest profile or exsiting
24 // user profile) and lasts for at the most 1 minute.
35 // Returns the instance for the given |profile|. It's a convenience wrapper
37 // NULL if ShouldObserveAppSyncForProfile returns false for |profile|.
38 static AppSyncUIState* Get(Profile* profile);
40 // Returns true if |profile| should be watched for app syncing.
41 static bool ShouldObserveAppSyncForProfile(Profile* profile)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_idle_api.cc 21 #include "chrome/browser/profiles/profile.h"
48 static void CreateNewPollTask(Profile* profile);
49 static IdleState ThrottledCalculateIdleState(int threshold, Profile* profile);
54 explicit ExtensionIdlePollingTask(Profile* profile) : profile_(profile) {}
61 Profile* profile_;
92 void CreateNewPollTask(Profile* profile)
    [all...]
  /external/chromium/chrome/browser/instant/
instant_confirm_dialog.h 12 class Profile;
23 Profile* profile);
29 Profile* profile);

Completed in 592 milliseconds

<<11121314151617181920>>