OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DriveAppMapping
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/apps/drive/
drive_app_mapping.h
19
//
DriveAppMapping
tracks the mapping between Drive apps and corresponding
21
class
DriveAppMapping
{
23
explicit
DriveAppMapping
(PrefService* prefs);
24
~
DriveAppMapping
();
44
DISALLOW_COPY_AND_ASSIGN(
DriveAppMapping
);
drive_app_mapping.cc
36
DriveAppMapping
::
DriveAppMapping
(PrefService* prefs) : prefs_(prefs) {
39
DriveAppMapping
::~
DriveAppMapping
() {
43
void
DriveAppMapping
::RegisterProfilePrefs(
50
void
DriveAppMapping
::Add(const std::string& drive_app_id,
58
void
DriveAppMapping
::Remove(const std::string& drive_app_id) {
63
std::string
DriveAppMapping
::GetChromeApp(
77
std::string
DriveAppMapping
::GetDriveApp(
96
bool
DriveAppMapping
::IsChromeAppGenerated
[
all
...]
drive_app_mapping_unittest.cc
20
DriveAppMapping
::RegisterProfilePrefs(pref_service_->registry());
22
mapping_.reset(new
DriveAppMapping
(pref_service_.get()));
25
DriveAppMapping
* mapping() { return mapping_.get(); }
29
scoped_ptr<
DriveAppMapping
> mapping_;
drive_app_provider.h
25
class
DriveAppMapping
;
87
scoped_ptr<
DriveAppMapping
> mapping_;
drive_app_provider.cc
40
mapping_(new
DriveAppMapping
(profile->GetPrefs())),
drive_app_provider_browsertest.cc
163
DriveAppMapping
* mapping() { return provider_->mapping_.get(); }
/external/chromium_org/chrome/browser/prefs/
browser_prefs.cc
456
DriveAppMapping
::RegisterProfilePrefs(registry);
Completed in 196 milliseconds