HomeSort by relevance Sort by last modified time
    Searched refs:profile_id (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/fileapi/
external_file_protocol_handler.cc 14 ExternalFileProtocolHandler::ExternalFileProtocolHandler(void* profile_id)
15 : profile_id_(profile_id) {
external_file_protocol_handler.h 20 explicit ExternalFileProtocolHandler(void* profile_id);
external_file_url_request_job.h 42 ExternalFileURLRequestJob(void* profile_id,
external_file_url_request_job.cc 49 URLHelper(void* profile_id,
52 : profile_id_(profile_id), url_(url), callback_(callback) {
141 void* profile_id,
145 profile_id_(profile_id),
  /external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
gallery_watch_manager.h 26 // Returns the GalleryWatchManager for |profile_id|, creating it if it is not
28 static GalleryWatchManager* GetForProfile(void* profile_id);
31 // |profile_id|.
32 static bool HasForProfile(void* profile_id);
35 static void OnProfileShutdown(void* profile_id);
38 // |profile_id| specifies the extension profile identifier.
43 void* profile_id,
50 // |extension_id|. |profile_id| specifies the extension profile identifier.
52 static void RemoveGalleryWatch(void* profile_id,
57 static void OnExtensionUnloaded(void* profile_id,
    [all...]
gallery_watch_manager.cc 238 void* profile_id) {
240 DCHECK(profile_id);
242 GalleryWatchManager::HasForProfile(profile_id));
246 (*g_gallery_watch_managers)[profile_id] = new GalleryWatchManager;
247 return (*g_gallery_watch_managers)[profile_id];
251 bool GalleryWatchManager::HasForProfile(void* profile_id) {
253 DCHECK(profile_id);
257 g_gallery_watch_managers->find(profile_id);
262 void GalleryWatchManager::OnProfileShutdown(void* profile_id) {
264 DCHECK(profile_id);
    [all...]
  /external/chromium_org/ui/message_center/
notifier_settings.cc 31 if (profile_id != other.profile_id)
44 if (profile_id != other.profile_id)
45 return profile_id < other.profile_id;
notification.h 96 void set_profile_id(const std::string& profile_id) {
97 notifier_id_.profile_id = profile_id;
  /external/chromium_org/chrome/browser/extensions/
user_script_listener.h 69 void UserScriptsReady(void* profile_id);
72 void ProfileDestroyed(void* profile_id);
76 void AppendNewURLPatterns(void* profile_id, const URLPatterns& new_patterns);
80 void ReplaceURLPatterns(void* profile_id, const URLPatterns& patterns);
user_script_listener.cc 157 void UserScriptListener::UserScriptsReady(void* profile_id) {
160 profile_data_[profile_id].user_scripts_ready = true;
164 void UserScriptListener::ProfileDestroyed(void* profile_id) {
166 profile_data_.erase(profile_id);
172 void UserScriptListener::AppendNewURLPatterns(void* profile_id,
178 ProfileData& data = profile_data_[profile_id];
185 void UserScriptListener::ReplaceURLPatterns(void* profile_id,
189 ProfileData& data = profile_data_[profile_id];
  /external/bluetooth/bluedroid/btif/src/
bluetooth.c 332 static const void* get_profile_interface (const char *profile_id)
334 ALOGI("get_profile_interface %s", profile_id);
341 if (is_profile(profile_id, BT_PROFILE_HANDSFREE_ID))
344 if (is_profile(profile_id, BT_PROFILE_HANDSFREE_CLIENT_ID))
347 if (is_profile(profile_id, BT_PROFILE_SOCKETS_ID))
350 if (is_profile(profile_id, BT_PROFILE_PAN_ID))
353 if (is_profile(profile_id, BT_PROFILE_ADVANCED_AUDIO_ID))
356 if (is_profile(profile_id, BT_PROFILE_ADVANCED_AUDIO_SINK_ID))
359 if (is_profile(profile_id, BT_PROFILE_HIDHOST_ID))
362 if (is_profile(profile_id, BT_PROFILE_HEALTH_ID)
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_notification_blocker_chromeos.cc 30 return notifier_id.profile_id == active_user_id_;
multi_user_notification_blocker_chromeos_unittest.cc 106 const std::string profile_id) {
108 id_with_profile.profile_id = profile_id;
114 const std::string profile_id) {
116 id_with_profile.profile_id = profile_id;
  /external/chromium_org/extensions/browser/
extension_function_dispatcher.h 86 void* profile_id,
143 void* profile_id,
warning_service.cc 86 void* profile_id,
90 reinterpret_cast<content::BrowserContext*>(profile_id);
warning_service.h 66 static void NotifyWarningsOnUI(void* profile_id, const WarningSet& warnings);
extension_function_dispatcher.cc 227 void* profile_id,
247 profile_id,
276 static_cast<content::BrowserContext*>(profile_id));
440 void* profile_id,
456 function->set_profile_id(profile_id);
extension_function.h 213 void set_profile_id(void* profile_id) { profile_id_ = profile_id; }
214 void* profile_id() const { return profile_id_; } function in class:ExtensionFunction
  /external/chromium_org/third_party/boringssl/src/ssl/
d1_srtp.c 332 uint16_t profile_id; local
334 if (!CBS_get_u16(&profile_ids, &profile_id))
340 if (find_profile_by_num(profile_id, &cprof))
407 uint16_t profile_id; local
420 !CBS_get_u16(&profile_ids, &profile_id) ||
455 if(prof->id == profile_id)
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_file_system.cc 76 // Returns EventRouter for the |profile_id| if available.
77 file_manager::EventRouter* GetEventRouterByProfileId(void* profile_id) {
80 // |profile_id| needs to be checked with ProfileManager::IsValidProfile
82 Profile* profile = reinterpret_cast<Profile*>(profile_id);
91 void* profile_id,
100 GetEventRouterByProfileId(profile_id);
110 void* profile_id,
121 profile_id, *operation_id, type,
127 void* profile_id,
135 GetEventRouterByProfileId(profile_id);
    [all...]
private_api_misc.cc 85 profile_info->profile_id = multi_user_util::GetUserIDFromProfile(profile);
407 if (profiles[i]->profile_id == params->profile_id) {
426 params->profile_id);
430 params->profile_id)) {
  /external/chromium_org/chrome/browser/net/
chrome_extensions_network_delegate.cc 33 void* profile_id,
37 Profile* profile = reinterpret_cast<Profile*>(profile_id);
63 RequestStatus status, net::URLRequest* request, void* profile_id) {
77 status, profile_id, process_id, render_frame_id));
  /external/chromium_org/chrome/browser/
shell_integration_win.cc 50 // from profile path. "profile_id" is composed of sanitized basenames of
71 base::string16 profile_id; local
72 profile_id.reserve(basenames.size());
74 // Generate profile_id from sanitized basenames.
79 profile_id += basenames[i];
82 return profile_id;
399 const base::string16 profile_id(GetProfileIdFromPath(profile_path));
400 if (!profile_id.empty())
401 components.push_back(profile_id);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
display_options_handler.cc 458 int profile_id; local
459 if (!base::StringToInt(profile_value, &profile_id)) {
464 if (profile_id < ui::COLOR_PROFILE_STANDARD ||
465 profile_id > ui::COLOR_PROFILE_READING) {
466 LOG(ERROR) << "Invalid profile_id: " << profile_id;
471 display_id, static_cast<ui::ColorCalibrationProfile>(profile_id));
  /external/chromium_org/chrome/browser/chromeos/drive/
file_system_util.h 70 // Returns a FileSystemInterface instance for the |profile_id|, or NULL
71 // if the Profile for |profile_id| is destructed or Drive File System is
73 // Note: |profile_id| should be the pointer of the Profile instance if it is
75 // this function can accept a dangling pointer as |profile_id| (and will return
78 FileSystemInterface* GetFileSystemByProfileId(void* profile_id);

Completed in 1151 milliseconds

1 2