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

1234567891011>>

/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
H A Dbackground_contents_service_unittest.cc32 const DictionaryValue* GetPrefs(Profile* profile) { argument
33 return profile->GetPrefs()->GetDictionary(
37 void ClearPrefs(Profile* profile) { argument
38 profile->GetPrefs()->ClearPref(prefs::kRegisteredBackgroundContents);
42 std::string GetPrefURLForApp(Profile* profile, const string16& appid) { argument
43 const DictionaryValue* pref = GetPrefs(profile);
57 explicit MockBackgroundContents(Profile* profile) argument
59 profile_(profile) {
61 MockBackgroundContents(Profile* profile, const std::string& id) argument
63 profile_(profile) {
82 MockClose(Profile* profile) argument
111 TestingProfile profile; local
116 TestingProfile profile; local
127 TestingProfile profile; local
153 TestingProfile profile; local
172 TestingProfile profile; local
202 TestingProfile profile; local
[all...]
H A Dbackground_contents_service_factory.cc9 #include "chrome/browser/profiles/profile.h"
14 Profile* profile) {
16 GetInstance()->GetServiceForProfile(profile));
33 Profile* profile) const {
34 return new BackgroundContentsService(profile,
13 GetForProfile( Profile* profile) argument
H A Dbrowser_url_handler.h30 typedef bool (*URLHandler)(GURL* url, Profile* profile);
36 static void RewriteURLIfNecessary(GURL* url, Profile* profile,
41 Profile* profile);
H A Dchrome_content_browser_client.cc12 #include "chrome/browser/profiles/profile.h"
31 Profile* profile,
34 ExtensionService* service = profile->GetExtensionService();
49 host->profile(),
50 host->profile()->GetRequestContextForPossibleApp(
54 new SearchProviderInstallStateMessageFilter(host->id(), host->profile()));
62 GURL ChromeContentBrowserClient::GetEffectiveURL(Profile* profile, argument
68 if (!profile || !profile->GetExtensionService())
72 profile
29 PreCreateRenderView( RenderViewHost* render_view_host, Profile* profile, const GURL& url) argument
[all...]
/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);
H A Dbrowser_frame_chromeos.cc14 Profile* profile) {
16 new chromeos::BrowserFrameChromeos(browser_view, profile);
24 BrowserView* browser_view, Profile* profile)
25 : BrowserFrameGtk(browser_view, profile) {
13 Create(BrowserView* browser_view, Profile* profile) argument
23 BrowserFrameChromeos( BrowserView* browser_view, Profile* profile) argument
/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
H A Dpinned_tab_service_unittest.cc23 TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile(); variable
24 pinned_tab_service_.reset(new PinnedTabService(profile));
25 return profile;
41 scoped_ptr<Browser> popup(new Browser(Browser::TYPE_POPUP, profile()));
50 PinnedTabCodec::ReadPinnedTabs(profile()));
60 PinnedTabCodec::ReadPinnedTabs(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
H A Dpromo_counter_unittest.cc13 TestingProfile profile; local
14 PromoCounter::RegisterUserPrefs(profile.GetPrefs(), "test");
17 PromoCounter counter(&profile, "test", "test", 2, 2);
25 TestingProfile profile; local
26 PromoCounter::RegisterUserPrefs(profile.GetPrefs(), "test");
30 PromoCounter counter(&profile, "test", "test", 2, 2);
35 PromoCounter counter(&profile, "test", "test", 2, 2);
40 PromoCounter counter(&profile, "test", "test", 2, 2);
47 TestingProfile profile; local
48 PromoCounter::RegisterUserPrefs(profile
66 TestingProfile profile; local
[all...]
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view_unittest.cc15 profile()->CreateBookmarkModel(true);
16 profile()->BlockUntilBookmarkModelLoaded();
18 profile()->GetBookmarkModel()->AddURL(
19 profile()->GetBookmarkModel()->GetBookmarkBarNode(),
24 BookmarkBarView bookmark_bar(profile(), browser());
36 bookmark_bar.SetProfile(profile());
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.h2 * profile_helpers.h -- Function prototypes for profile helper functions
13 (profile_t profile, const char *const *names, char ***ret_values);
19 (profile_t profile, const char **names, char ***ret_names);
22 (profile_t profile, const char **names, char ***ret_names);
H A Dprofile.h2 * profile.h
48 * Used by the profile iterator in prof_get.c
62 (profile_t profile);
65 (profile_t profile, const char *def_string);
68 (profile_t profile, const char *name, const char *subname,
72 (profile_t profile, const char *name, const char *subname,
77 (profile_t profile, const char *name, const char *subname,
82 (profile_t profile, const char *name, const char *subname,
87 (profile_t profile, const char *const *names,
/external/chromium/chrome/browser/ui/options/
H A Dshow_options_url.cc7 #include "chrome/browser/profiles/profile.h"
13 void ShowOptionsURL(Profile* profile, const GURL& url) { argument
16 Browser* browser = Browser::Create(profile);
H A Doptions_page_base.cc16 OptionsPageBase::OptionsPageBase(Profile* profile) argument
17 : profile_(profile) {
25 UserMetrics::RecordAction(action, profile());
/external/webkit/Source/WebCore/html/
H A DHTMLHeadElement.idl23 attribute [Reflect] DOMString profile;
/external/chromium/chrome/browser/autofill/
H A Dautofill_common_test.cc12 #include "chrome/browser/profiles/profile.h"
29 FormGroup* profile, AutofillFieldType type, const char* value) {
31 profile->SetInfo(type, ASCIIToUTF16(value));
34 void SetProfileInfo(AutofillProfile* profile, argument
40 check_and_set(profile, NAME_FIRST, first_name);
41 check_and_set(profile, NAME_MIDDLE, middle_name);
42 check_and_set(profile, NAME_LAST, last_name);
43 check_and_set(profile, EMAIL_ADDRESS, email);
44 check_and_set(profile, COMPANY_NAME, company);
45 check_and_set(profile, ADDRESS_HOME_LINE
28 check_and_set( FormGroup* profile, AutofillFieldType type, const char* value) argument
55 SetProfileInfoWithGuid(AutofillProfile* profile, const char* guid, const char* first_name, const char* middle_name, const char* last_name, const char* email, const char* company, const char* address1, const char* address2, const char* city, const char* state, const char* zipcode, const char* country, const char* phone, const char* fax) argument
77 DisableSystemServices(Profile* profile) argument
[all...]
/external/chromium/chrome/browser/notifications/
H A Ddesktop_notification_service_factory.cc9 #include "chrome/browser/profiles/profile.h"
15 Profile* profile) {
18 GetInstance()->GetServiceForProfile(profile));
35 Profile* profile) const {
36 DesktopNotificationService* service = new DesktopNotificationService(profile,
14 GetForProfile( Profile* profile) argument
/external/chromium/chrome/browser/profiles/
H A Dprofile_keyed_service_factory.cc10 #include "chrome/browser/profiles/profile.h"
26 Profile* profile) {
28 if (profile->IsOffTheRecord()) {
30 profile = profile->GetOriginalProfile();
41 mapping_.find(profile);
49 service = factory_(profile);
51 service = BuildServiceInstanceFor(profile);
54 Associate(profile, service);
62 void ProfileKeyedServiceFactory::Associate(Profile* profile, argument
25 GetServiceForProfile( Profile* profile) argument
76 ProfileShutdown(Profile* profile) argument
83 ProfileDestroyed(Profile* profile) argument
[all...]
/external/chromium/chrome/browser/themes/
H A Dtheme_service_factory.cc9 #include "chrome/browser/profiles/profile.h"
19 ThemeService* ThemeServiceFactory::GetForProfile(Profile* profile) { argument
21 GetInstance()->GetServiceForProfile(profile));
25 const Extension* ThemeServiceFactory::GetThemeForProfile(Profile* profile) { argument
26 std::string id = GetForProfile(profile)->GetThemeID();
30 return profile->GetExtensionService()->GetExtensionById(id, false);
46 Profile* profile) const {
53 provider->Init(profile);
H A Dtheme_service_factory.h25 // |profile|. Note that even if a Profile doesn't have a theme installed, it
27 static ThemeService* GetForProfile(Profile* profile);
30 // |profile|. Returns NULL if the theme is no longer installed, if there is
32 static const Extension* GetThemeForProfile(Profile* profile);
43 virtual ProfileKeyedService* BuildServiceInstanceFor(Profile* profile) const;
/external/chromium/chrome/browser/sync/glue/
H A Dtheme_util.cc17 #include "chrome/browser/profiles/profile.h"
39 bool UseSystemTheme(Profile* profile) { argument
41 return GtkThemeService::GetFrom(profile)->UseGtkTheme();
88 Profile* profile) {
89 DCHECK(profile);
97 profile->GetExtensionService();
113 ThemeServiceFactory::GetThemeForProfile(profile);
119 bool previous_use_system_theme = UseSystemTheme(profile);
122 ThemeServiceFactory::GetForProfile(profile)->SetTheme(extension);
126 extension, profile);
86 SetCurrentThemeFromThemeSpecifics( const sync_pb::ThemeSpecifics& theme_specifics, Profile* profile) argument
149 UpdateThemeSpecificsOrSetCurrentThemeIfNecessary( Profile* profile, sync_pb::ThemeSpecifics* theme_specifics) argument
163 GetThemeSpecificsFromCurrentTheme( Profile* profile, sync_pb::ThemeSpecifics* theme_specifics) argument
207 SetCurrentThemeFromThemeSpecificsIfNecessary( const sync_pb::ThemeSpecifics& theme_specifics, Profile* profile) argument
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dlogin_browsertest.cc81 // This profile should NOT be an OTR profile.
83 Profile* profile = browser()->profile(); local
84 EXPECT_EQ("user", profile->GetPath().BaseName().value());
85 EXPECT_FALSE(profile->IsOffTheRecord());
88 // On initial launch, we should get the OTR default profile.
90 Profile* profile = browser()->profile(); local
91 EXPECT_EQ("Default", profile
[all...]

Completed in 419 milliseconds

1234567891011>>