HomeSort by relevance Sort by last modified time
    Searched refs:profile (Results 226 - 250 of 1474) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/extensions/
extension_browser_event_router.cc 13 #include "chrome/browser/profiles/profile.h"
64 static void DispatchEvent(Profile* profile,
67 if (profile->GetExtensionEventRouter()) {
68 profile->GetExtensionEventRouter()->DispatchEventToRenderers(
69 event_name, json_args, profile, GURL());
73 static void DispatchEventToExtension(Profile* profile,
77 if (profile->GetExtensionEventRouter()) {
78 profile->GetExtensionEventRouter()->DispatchEventToExtension
    [all...]
extension_content_settings_apitest.cc 7 #include "chrome/browser/profiles/profile.h"
16 PrefService* pref_service = browser()->profile()->GetPrefs();
34 PrefService* prefs = browser()->profile()->GetPrefs();
40 // Setting an incognito preference should not create an incognito profile.
41 EXPECT_FALSE(browser()->profile()->HasOffTheRecordProfile());
44 browser()->profile()->GetOffTheRecordProfile()->GetPrefs();
68 PrefService* pref_service = browser()->profile()->GetPrefs();
84 PrefService* prefs = browser()->profile()->GetPrefs();
extension_process_manager.cc 14 #include "chrome/browser/profiles/profile.h"
29 // whether to fall back on the original profile's ExtensionProcessManager based
33 explicit IncognitoExtensionProcessManager(Profile* profile);
84 ExtensionProcessManager* ExtensionProcessManager::Create(Profile* profile) {
85 return (profile->IsOffTheRecord()) ?
86 new IncognitoExtensionProcessManager(profile) :
87 new ExtensionProcessManager(profile);
90 ExtensionProcessManager::ExtensionProcessManager(Profile* profile
    [all...]
extension_cookies_helpers.cc 13 #include "chrome/browser/profiles/profile.h"
28 Profile* ChooseProfileFromStoreId(const std::string& store_id,
29 Profile* profile,
31 DCHECK(profile);
32 bool allow_original = !profile->IsOffTheRecord();
33 bool allow_incognito = profile->IsOffTheRecord() ||
34 (include_incognito && profile->HasOffTheRecordProfile());
36 return profile->GetOriginalProfile();
38 return profile->GetOffTheRecordProfile()
    [all...]
extension_cookies_unittest.cc 26 // A test profile that supports linking with another profile for incognito support.
30 virtual Profile* GetOriginalProfile() {
37 virtual Profile* GetOffTheRecordProfile() {
54 void set_linked_profile(OtrTestingProfile* profile) {
55 linked_profile_ = profile;
68 OtrTestingProfile profile, otrProfile; local
70 OtrTestingProfile::LinkProfiles(&profile, &otrProfile);
73 extension_cookies_helpers::GetStoreIdFromProfile(&profile));
74 EXPECT_EQ(&profile,
151 TestingProfile profile; local
    [all...]
file_manager_util.h 13 class Profile;
22 static bool ConvertFileToFileSystemUrl(Profile* profile,
35 static void ShowFullTabUrl(Profile* profile,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 69 virtual void Profile(llvm::FoldingSetNodeID& profile) = 0;
134 static void Profile(llvm::FoldingSetNodeID& profile, const TypedValueRegion* R) {
135 profile.AddInteger((unsigned) RegionValueKind);
136 profile.AddPointer(R);
139 virtual void Profile(llvm::FoldingSetNodeID& profile) {
140 Profile(profile, R)
    [all...]
  /external/chromium/chrome/browser/
browsing_data_appcache_helper_unittest.cc 34 TestingProfile profile; local
41 new CannedBrowsingDataAppCacheHelper(&profile));
69 TestingProfile profile; local
74 new CannedBrowsingDataAppCacheHelper(&profile));
93 TestingProfile profile; local
98 new CannedBrowsingDataAppCacheHelper(&profile));
plugin_updater.cc 17 #include "chrome/browser/profiles/profile.h"
130 void PluginUpdater::UpdatePluginGroupsStateFromPrefs(Profile* profile) {
133 profile->GetPrefs()->GetFilePath(prefs::kPluginsLastInternalDirectory);
138 profile->GetPrefs()->SetFilePath(
149 if (!profile->GetPrefs()->GetBoolean(prefs::kPluginsEnabledInternalPDF)) {
153 profile->GetPrefs()->SetBoolean(prefs::kPluginsEnabledInternalPDF, true);
158 ListPrefUpdate update(profile->GetPrefs(), prefs::kPluginsPluginsList);
215 // Don't do this in the constructor, there's no profile available there.
217 profile->GetPrefs()->GetList(prefs::kPluginsDisabledPlugins)
    [all...]
browser_about_handler.h 20 class Profile;
28 bool WillHandleBrowserAboutURL(GURL* url, Profile* profile);
32 void InitializeAboutDataSource(Profile* profile);
browsing_data_appcache_helper.h 15 class Profile;
22 explicit BrowsingDataAppCacheHelper(Profile* profile);
57 explicit CannedBrowsingDataAppCacheHelper(Profile* profile);
81 Profile* profile_;
bug_report_data.cc 25 void BugReportData::UpdateData(Profile* profile,
37 profile_ = profile;
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_collection_impl.cc 41 Profile* profile) {
42 Balloon* new_balloon = MakeBalloon(notification, profile);
68 Profile* profile,
72 Balloon* new_balloon = new Balloon(notification, profile, this);
158 Profile* profile) {
159 Balloon* new_balloon = new Balloon(notification, profile, this);
  /external/chromium/chrome/browser/prefs/
session_startup_pref.cc 15 #include "chrome/browser/profiles/profile.h"
55 Profile* profile,
57 DCHECK(profile);
58 SetStartupPref(profile->GetPrefs(), pref);
85 SessionStartupPref SessionStartupPref::GetStartupPref(Profile* profile) {
86 DCHECK(profile);
87 return GetStartupPref(profile->GetPrefs());
  /external/chromium/chrome/browser/ui/
browser_init.cc 38 #include "chrome/browser/profiles/profile.h"
154 // The Profile that we restore sessions from.
155 Profile* profile_;
172 profile_(contents->profile()),
314 // The Profile that we restore sessions from.
315 Profile* profile_;
323 profile_(contents->profile()) {
362 Profile* profile) {
363 SessionStartupPref pref = SessionStartupPref::GetStartupPref(profile);
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_form_manager_unittest.cc 62 Profile* profile() { return profile_; } function in class:PasswordFormManagerTest
70 Profile* profile_;
75 profile(), NULL, *observed_form(), false);
130 profile(), NULL, *observed_form(), false);
166 profile(), NULL, *observed_form(), false);
184 profile(), NULL, *observed_form(), false));
208 PasswordFormManager manager1(profile(), NULL, credentials, false);
214 PasswordFormManager manager2(profile(), NULL, credentials, false);
221 PasswordFormManager manager3(profile(), NULL, credentials, false)
    [all...]
  /frameworks/base/media/java/android/media/
MediaRecorder.java 315 * @param profile the CamcorderProfile to use
318 public void setProfile(CamcorderProfile profile) {
319 setOutputFormat(profile.fileFormat);
320 setVideoFrameRate(profile.videoFrameRate);
321 setVideoSize(profile.videoFrameWidth, profile.videoFrameHeight);
322 setVideoEncodingBitRate(profile.videoBitRate);
323 setVideoEncoder(profile.videoCodec);
324 if (profile.quality >= CamcorderProfile.QUALITY_TIME_LAPSE_LOW &&
325 profile.quality <= CamcorderProfile.QUALITY_TIME_LAPSE_QVGA)
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 29 // Files: tools/splaytree.js tools/codemap.js tools/consarray.js tools/profile.js
53 function countNodes(profile, traverseFunc) {
55 traverseFunc.call(profile, function () { count++; });
61 this.profile = new Profile();
75 this.profile.addLibrary('lib1', 0x11000, 0x12000);
76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900);
77 this.profile.addStaticCode('lib1-f2', 0x11200, 0x11500);
78 this.profile.addLibrary('lib2', 0x21000, 0x22000);
79 this.profile.addStaticCode('lib2-f1', 0x21100, 0x21900)
314 var profile = testDriver.profile.getTopDownProfile('lib2-f1'); variable
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_classifier.cc 12 AutocompleteClassifier::AutocompleteClassifier(Profile* profile)
13 : controller_(new AutocompleteController(profile, NULL)),
  /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_;
bookmark_html_writer.h 21 class Profile;
41 BookmarkFaviconFetcher(Profile* profile,
71 // The Profile object used for accessing FaviconService, bookmarks model.
72 Profile* profile_;
101 void WriteBookmarks(Profile* profile,
bookmark_utils.h 24 class Profile;
41 int BookmarkDragOperation(Profile* profile, const BookmarkNode* node);
46 int BookmarkDropOperation(Profile* profile,
54 int PerformBookmarkDrop(Profile* profile,
60 // |index|. A drop from a separate profile is always allowed, where as
61 // a drop from the same profile is only allowed if none of the nodes in
64 bool IsValidDropLocation(Profile* profile
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
cookie_fetcher.cc 14 #include "chrome/browser/profiles/profile.h"
22 CookieFetcher::CookieFetcher(Profile* profile) : profile_(profile) {
help_app_launcher.cc 12 #include "chrome/browser/profiles/profile.h"
34 Profile* profile = ProfileManager::GetDefaultProfile(); local
35 ExtensionService* service = profile->GetExtensionService();
  /external/chromium/chrome/browser/chromeos/
low_battery_observer.cc 15 LowBatteryObserver::LowBatteryObserver(Profile* profile)
16 : notification_(profile, "battery.chromeos",

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>