OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:drive_app_id
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/apps/drive/
drive_app_mapping.h
28
// Adds a mapping from |
drive_app_id
| to |chrome_app_id|. |generated|
30
void Add(const std::string&
drive_app_id
,
33
void Remove(const std::string&
drive_app_id
);
35
std::string GetChromeApp(const std::string&
drive_app_id
) const;
drive_app_provider.cc
66
const std::string&
drive_app_id
,
72
mapping_->GetChromeApp(
drive_app_id
);
78
mapping_->Add(
drive_app_id
, new_chrome_app_id, is_new_app_generated);
94
const std::string
drive_app_id
,
101
UpdateMappingAndExtensionSystem(
drive_app_id
, app, false);
182
void DriveAppProvider::ProcessRemovedDriveApp(const std::string&
drive_app_id
) {
183
const std::string chrome_app_id = mapping_->GetChromeApp(
drive_app_id
);
185
mapping_->Remove(
drive_app_id
);
239
const std::string
drive_app_id
= mapping_->GetDriveApp(extension->id());
local
240
if (!
drive_app_id
.empty() &
266
std::string
drive_app_id
= mapping_->GetDriveApp(extension->id());
local
[
all
...]
drive_app_provider.h
53
// Maps |
drive_app_id
| to |new_app|'s id in mapping. Auto uninstall existing
55
void UpdateMappingAndExtensionSystem(const std::string&
drive_app_id
,
60
void ProcessDeferredOnExtensionInstalled(const std::string
drive_app_id
,
69
void ProcessRemovedDriveApp(const std::string&
drive_app_id
);
drive_app_mapping.cc
50
void DriveAppMapping::Add(const std::string&
drive_app_id
,
55
drive_app_id
, CreateInfoDict(chrome_app_id, generated).release());
58
void DriveAppMapping::Remove(const std::string&
drive_app_id
) {
60
update->RemoveWithoutPathExpansion(
drive_app_id
, NULL);
64
const std::string&
drive_app_id
) const {
69
if (mapping->GetDictionaryWithoutPathExpansion(
drive_app_id
, &info_dict) &&
Completed in 274 milliseconds