Home
last modified time | relevance | path

Searched refs:AppResource (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/google_apis/drive/
Ddrive_api_parser.cc309 AppResource::AppResource() in AppResource() function in google_apis::AppResource
314 AppResource::~AppResource() {} in ~AppResource()
317 void AppResource::RegisterJSONConverter( in RegisterJSONConverter()
318 base::JSONValueConverter<AppResource>* converter) { in RegisterJSONConverter()
319 converter->RegisterStringField(kId, &AppResource::application_id_); in RegisterJSONConverter()
320 converter->RegisterStringField(kName, &AppResource::name_); in RegisterJSONConverter()
321 converter->RegisterStringField(kObjectType, &AppResource::object_type_); in RegisterJSONConverter()
322 converter->RegisterStringField(kProductId, &AppResource::product_id_); in RegisterJSONConverter()
323 converter->RegisterBoolField(kSupportsCreate, &AppResource::supports_create_); in RegisterJSONConverter()
324 converter->RegisterBoolField(kRemovable, &AppResource::removable_); in RegisterJSONConverter()
[all …]
Ddrive_api_parser.h136 friend class AppResource; variable
147 class AppResource {
149 ~AppResource();
150 AppResource();
155 base::JSONValueConverter<AppResource>* converter);
158 static scoped_ptr<AppResource> CreateFrom(const base::Value& value);
254 friend class base::internal::RepeatedMessageConverter<AppResource>;
274 DISALLOW_COPY_AND_ASSIGN(AppResource);
296 const ScopedVector<AppResource>& items() const { return items_; } in items()
301 void set_items(ScopedVector<AppResource> items) { in set_items()
[all …]
Ddrive_api_parser_unittest.cc48 const AppResource& app1 = *applist->items()[0]; in TEST()
84 const AppResource& app2 = *applist->items()[1]; in TEST()
/external/chromium_org/chrome/browser/chromeos/file_manager/
Dfile_tasks_unittest.cc175 scoped_ptr<google_apis::AppResource> foo_app(new google_apis::AppResource); in TEST()
186 scoped_ptr<google_apis::AppResource> bar_app(new google_apis::AppResource); in TEST()
196 ScopedVector<google_apis::AppResource> app_resources; in TEST()
610 scoped_ptr<google_apis::AppResource> baz_app(new google_apis::AppResource); in TEST_F()
619 ScopedVector<google_apis::AppResource> app_resources; in TEST_F()
662 scoped_ptr<google_apis::AppResource> foo_app(new google_apis::AppResource); in TEST_F()
672 ScopedVector<google_apis::AppResource> app_resources; in TEST_F()
/external/chromium_org/chrome/browser/drive/
Ddrive_api_util.h25 class AppResource; variable
Ddrive_app_registry.cc159 const google_apis::AppResource& app = *app_list.items()[i]; in UpdateFromAppList()
/external/chromium_org/chrome/browser/ui/webui/chromeos/
Ddrive_internals_ui.cc353 const google_apis::AppResource* app = parsed_app_list->items()[i]; in OnGetAppList()