HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 176 - 200 of 3371) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/browser/ui/search_engines/
search_engine_tab_helper_delegate.h 9 class Profile;
28 Profile* profile) = 0;
  /external/chromium/chrome/browser/ui/touch/frame/
keyboard_container_view.h 12 class Profile;
20 explicit KeyboardContainerView(Profile* profile);
  /external/chromium/chrome/browser/ui/webui/
html_dialog_tab_contents_delegate.cc 7 #include "chrome/browser/profiles/profile.h"
15 // non-incognito profile.
18 // profile that's long-lived? Of course, we'd still have to clear it out
20 HtmlDialogTabContentsDelegate::HtmlDialogTabContentsDelegate(Profile* profile)
21 : profile_(profile->GetOriginalProfile()) {}
25 Profile* HtmlDialogTabContentsDelegate::profile() const { return profile_; } function in class:HtmlDialogTabContentsDelegate
36 // to find a browser matching params.profile or create a new one.
39 params.profile = profile_
    [all...]
  /external/oprofile/libpp/
diff_container.h 33 /// total count for 'new' profile
37 /// first profile
40 /// second profile
  /external/webkit/Source/WebCore/manual-tests/inspector/
profiler-test-call.html 5 console.profile("Using the call() method");
31 the profile. In the profile there should be a call to fakeObject() with call() as
profiler-test-many-calls-in-the-same-scope.html 5 console.profile("Many Calls In The Same Scope");
37 the profile. In the profile many functions should be the children of startTest.
  /external/chromium/chrome/browser/autofill/
autofill_common_test.h 11 class Profile;
28 // tests. |SetProfileInfo| provides a quick way to populate a profile with
30 void SetProfileInfo(AutofillProfile* profile,
37 void SetProfileInfoWithGuid(AutofillProfile* profile,
54 void DisableSystemServices(Profile* profile);
autofill_profile.h 27 // A collection of FormGroups stored in a profile. AutofillProfile also
29 // form information from the profile, and the profile will delegate the request
41 AutofillProfile(const AutofillProfile& profile);
44 AutofillProfile& operator=(const AutofillProfile& profile);
62 // The user-visible label of the profile, generated in relation to other
63 // profiles. Shows at least 2 fields that differentiate profile from other
75 // Adjusts the labels according to profile data.
83 // Profile labels are changed accordingly to these rules.
86 // profiles. For non permanent situations (selection of profile, when use
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_folder_editor_controller.h 14 class Profile;
30 static void Show(Profile* profile,
37 BookmarkFolderEditorController(Profile* profile,
52 Profile* profile_;
  /external/chromium/chrome/browser/
browsing_data_appcache_helper.h 15 class Profile;
22 explicit BrowsingDataAppCacheHelper(Profile* profile);
57 explicit CannedBrowsingDataAppCacheHelper(Profile* profile);
81 Profile* profile_;
browsing_data_local_storage_helper_unittest.cc 16 TestingProfile profile; local
21 new CannedBrowsingDataLocalStorageHelper(&profile));
  /external/chromium/chrome/browser/chromeos/
enterprise_extension_observer.cc 10 #include "chrome/browser/profiles/profile.h"
15 EnterpriseExtensionObserver::EnterpriseExtensionObserver(Profile* profile)
16 : profile_(profile) {
20 Source<Profile>(profile_));
28 if (Source<Profile>(source).ptr() != profile_) {
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification.cc 25 SystemNotification::SystemNotification(Profile* profile,
29 : profile_(profile),
38 SystemNotification::SystemNotification(Profile* profile,
42 : profile_(profile),
  /external/chromium/chrome/browser/content_settings/
content_settings_pref_provider_unittest.cc 58 TestingProfile profile; local
59 content_settings::PrefDefaultProvider provider(&profile);
77 TestingProfile profile; local
78 PrefDefaultProvider provider(&profile);
83 EXPECT_EQ(profile.GetHostContentSettingsMap(), observer.last_notifier);
90 TestingProfile profile; local
91 PrefDefaultProvider provider(&profile);
93 PrefService* prefs = profile.GetPrefs();
120 TestingProfile profile; local
121 PrefDefaultProvider provider(&profile);
175 TestingProfile profile; local
227 TestingProfile profile; local
    [all...]
  /external/chromium/chrome/browser/extensions/
crx_installer_browsertest.cc 9 #include "chrome/browser/profiles/profile.h"
19 explicit MockInstallUI(Profile* profile) :
20 ExtensionInstallUI(profile), confirmation_requested_(false) {}
51 ExtensionService* service = browser()->profile()->GetExtensionService();
52 MockInstallUI* mock_install_ui = new MockInstallUI(browser()->profile());
extension_messages_apitest.cc 7 #include "chrome/browser/profiles/profile.h"
26 Source<Profile>(source).ptr()->GetExtensionEventRouter();
32 Source<Profile>(source).ptr(),
36 Source<Profile>(source).ptr(),
40 Source<Profile>(source).ptr(),
44 Source<Profile>(source).ptr(),
extension_uninstall_dialog.h 15 class Profile;
31 explicit ExtensionUninstallDialog(Profile* profile);
43 static void Show(Profile* profile,
57 Profile* profile_;
  /external/chromium/chrome/browser/tabs/
pinned_tab_service_unittest.cc 23 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/chromium/chrome/browser/ui/
browser_dialogs.h 15 class Profile;
30 // Creates and shows an HTML dialog with the given delegate and profile.
36 gfx::NativeWindow ShowHtmlDialog(gfx::NativeWindow parent, Profile* profile,
46 Profile* profile);
  /external/chromium/chrome/browser/ui/cocoa/
about_window_controller.h 12 class Profile;
38 Profile* profile_; // Weak, probably the default profile.
45 // Initialize the controller with the given profile, but does not show it.
47 - (id)initWithProfile:(Profile*)profile;
  /external/chromium/chrome/browser/ui/gtk/
first_run_dialog.h 22 static bool Show(Profile* profile, bool randomize_search_engine_order);
27 FirstRunDialog(Profile* profile,
62 // Our current profile
63 Profile* profile_;
  /external/chromium/chrome/browser/ui/views/
dom_view.cc 23 bool DOMView::Init(Profile* profile, SiteInstance* instance) {
28 tab_contents_.reset(CreateTabContents(profile, instance));
36 TabContents* DOMView::CreateTabContents(Profile* profile,
38 return new TabContents(profile, instance, MSG_ROUTING_NONE, NULL, NULL);
  /external/chromium/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.SetID(L"id");
41 const ProfileId profile_id = profile.GetRuntimeId();
53 ASSERT_TRUE(drag_data.IsFromProfile(profile.GetOriginalProfile()));
  /external/webkit/Source/WebCore/bindings/js/
ScriptProfile.h 38 class Profile;
47 static PassRefPtr<ScriptProfile> create(PassRefPtr<JSC::Profile> profile);
59 ScriptProfile(PassRefPtr<JSC::Profile> profile);
61 RefPtr<JSC::Profile> m_profile;
  /external/chromium/chrome/browser/chromeos/frame/
browser_frame_chromeos.h 15 BrowserFrameChromeos(BrowserView* browser_view, Profile* profile);

Completed in 572 milliseconds

1 2 3 4 5 6 78 91011>>