Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: chrome/browser/chromeos/gdata/drive_api_parser.cc

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reflect comments Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/gdata/drive_api_parser.cc
diff --git a/chrome/browser/chromeos/gdata/drive_api_parser.cc b/chrome/browser/chromeos/gdata/drive_api_parser.cc
deleted file mode 100644
index 47a14f8b30f60dd62b36c026e5f82452b50934d0..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/gdata/drive_api_parser.cc
+++ /dev/null
@@ -1,641 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/gdata/drive_api_parser.h"
-
-#include <algorithm>
-
-#include "base/basictypes.h"
-#include "base/file_path.h"
-#include "base/json/json_value_converter.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/string_number_conversions.h"
-#include "base/string_piece.h"
-#include "base/string_util.h"
-#include "base/values.h"
-#include "chrome/browser/chromeos/gdata/gdata_util.h"
-
-using base::Value;
-using base::DictionaryValue;
-using base::ListValue;
-
-namespace {
-
-// Converts |url_string| to |result|. Always returns true to be used
-// for JSONValueConverter::RegisterCustomField method.
-// TODO(mukai): make it return false in case of invalid |url_string|.
-bool GetGURLFromString(const base::StringPiece& url_string, GURL* result) {
- *result = GURL(url_string.as_string());
- return true;
-}
-
-// Drive v2 API JSON names.
-
-// Definition order follows the order of documentation in
-// https://developers.google.com/drive/v2/reference/
-
-// Common
-const char kKind[] = "kind";
-const char kId[] = "id";
-const char kETag[] = "etag";
-const char kSelfLink[] = "selfLink";
-const char kItems[] = "items";
-const char kLargestChangeId[] = "largestChangeId";
-
-// About Resource
-// https://developers.google.com/drive/v2/reference/about
-const char kAboutKind[] = "drive#about";
-const char kQuotaBytesTotal[] = "quotaBytesTotal";
-const char kQuotaBytesUsed[] = "quotaBytesUsed";
-const char kRootFolderId[] = "rootFolderId";
-
-// App Icon
-// https://developers.google.com/drive/v2/reference/apps
-const char kCategory[] = "category";
-const char kSize[] = "size";
-const char kIconUrl[] = "iconUrl";
-
-// Apps Resource
-// https://developers.google.com/drive/v2/reference/apps
-const char kAppKind[] = "drive#app";
-const char kName[] = "name";
-const char kObjectType[] = "objectType";
-const char kSupportsCreate[] = "supportsCreate";
-const char kSupportsImport[] = "supportsImport";
-const char kInstalled[] = "installed";
-const char kAuthorized[] = "authorized";
-const char kProductUrl[] = "productUrl";
-const char kPrimaryMimeTypes[] = "primaryMimeTypes";
-const char kSecondaryMimeTypes[] = "secondaryMimeTypes";
-const char kPrimaryFileExtensions[] = "primaryFileExtensions";
-const char kSecondaryFileExtensions[] = "secondaryFileExtensions";
-const char kIcons[] = "icons";
-
-// Apps List
-// https://developers.google.com/drive/v2/reference/apps/list
-const char kAppListKind[] = "drive#appList";
-
-// Parent Resource
-// https://developers.google.com/drive/v2/reference/parents
-const char kParentReferenceKind[] = "drive#parentReference";
-const char kParentLink[] = "parentLink";
-const char kIsRoot[] = "isRoot";
-
-// File Resource
-// https://developers.google.com/drive/v2/reference/files
-const char kFileKind[] = "drive#file";
-const char kTitle[] = "title";
-const char kMimeType[] = "mimeType";
-const char kCreatedDate[] = "createdDate";
-const char kModifiedByMeDate[] = "modifiedByMeDate";
-const char kDownloadUrl[] = "downloadUrl";
-const char kFileExtension[] = "fileExtension";
-const char kMd5Checksum[] = "md5Checksum";
-const char kFileSize[] = "fileSize";
-const char kAlternateLink[] = "alternateLink";
-const char kEmbedLink[] = "embedLink";
-const char kParents[] = "parents";
-const char kThumbnailLink[] = "thumbnailLink";
-const char kWebContentLink[] = "webContentLink";
-const char kLabels[] = "labels";
-// These 5 flags are defined under |labels|.
-const char kLabelStarred[] = "starred";
-const char kLabelHidden[] = "hidden";
-const char kLabelTrashed[] = "trashed";
-const char kLabelRestricted[] = "restricted";
-const char kLabelViewed[] = "viewed";
-
-const char kDriveFolderMimeType[] = "application/vnd.google-apps.folder";
-
-// Files List
-// https://developers.google.com/drive/v2/reference/files/list
-const char kFileListKind[] = "drive#fileList";
-const char kNextPageToken[] = "nextPageToken";
-const char kNextLink[] = "nextLink";
-
-// Change Resource
-// https://developers.google.com/drive/v2/reference/changes
-const char kChangeKind[] = "drive#change";
-const char kFileId[] = "fileId";
-const char kDeleted[] = "deleted";
-const char kFile[] = "file";
-
-// Changes List
-// https://developers.google.com/drive/v2/reference/changes/list
-const char kChangeListKind[] = "drive#changeList";
-
-// Google Apps MIME types:
-const char kGoogleDocumentMimeType[] = "application/vnd.google-apps.document";
-const char kGoogleDrawingMimeType[] = "application/vnd.google-apps.drawing";
-const char kGoogleFormMimeType[] = "application/vnd.google-apps.form";
-const char kGooglePresentationMimeType[] =
- "application/vnd.google-apps.presentation";
-const char kGoogleScriptMimeType[] = "application/vnd.google-apps.script";
-const char kGoogleSiteMimeType[] = "application/vnd.google-apps.site";
-const char kGoogleSpreadsheetMimeType[] =
- "application/vnd.google-apps.spreadsheet";
-const char kGoogleTableMimeType[] = "application/vnd.google-apps.table";
-
-// Maps category name to enum IconCategory.
-struct AppIconCategoryMap {
- gdata::DriveAppIcon::IconCategory category;
- const char* category_name;
-};
-
-const AppIconCategoryMap kAppIconCategoryMap[] = {
- { gdata::DriveAppIcon::DOCUMENT, "document" },
- { gdata::DriveAppIcon::APPLICATION, "application" },
- { gdata::DriveAppIcon::SHARED_DOCUMENT, "documentShared" },
-};
-
-// Checks if the JSON is expected kind. In Drive API, JSON data structure has
-// |kind| property which denotes the type of the structure (e.g. "drive#file").
-bool IsResourceKindExpected(const base::Value& value,
- const std::string& expected_kind) {
- const base::DictionaryValue* as_dict = NULL;
- std::string kind;
- return value.GetAsDictionary(&as_dict) &&
- as_dict->HasKey(kKind) &&
- as_dict->GetString(kKind, &kind) &&
- kind == expected_kind;
-}
-
-} // namespace
-
-// TODO(kochi): Rename to namespace drive. http://crbug.com/136371
-namespace gdata {
-
-////////////////////////////////////////////////////////////////////////////////
-// AboutResource implementation
-
-AboutResource::AboutResource()
- : largest_change_id_(0),
- quota_bytes_total_(0),
- quota_bytes_used_(0) {}
-
-AboutResource::~AboutResource() {}
-
-// static
-scoped_ptr<AboutResource> AboutResource::CreateFrom(const base::Value& value) {
- scoped_ptr<AboutResource> resource(new AboutResource());
- if (!IsResourceKindExpected(value, kAboutKind) || !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid About resource JSON!";
- return scoped_ptr<AboutResource>(NULL);
- }
- return resource.Pass();
-}
-
-// static
-void AboutResource::RegisterJSONConverter(
- base::JSONValueConverter<AboutResource>* converter) {
- converter->RegisterCustomField<int64>(kLargestChangeId,
- &AboutResource::largest_change_id_,
- &base::StringToInt64);
- converter->RegisterCustomField<int64>(kQuotaBytesTotal,
- &AboutResource::quota_bytes_total_,
- &base::StringToInt64);
- converter->RegisterCustomField<int64>(kQuotaBytesUsed,
- &AboutResource::quota_bytes_used_,
- &base::StringToInt64);
- converter->RegisterStringField(kRootFolderId,
- &AboutResource::root_folder_id_);
-}
-
-bool AboutResource::Parse(const base::Value& value) {
- base::JSONValueConverter<AboutResource> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid About resource JSON!";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// DriveAppIcon implementation
-
-DriveAppIcon::DriveAppIcon() {}
-
-DriveAppIcon::~DriveAppIcon() {}
-
-// static
-void DriveAppIcon::RegisterJSONConverter(
- base::JSONValueConverter<DriveAppIcon>* converter) {
- converter->RegisterCustomField<IconCategory>(
- kCategory,
- &DriveAppIcon::category_,
- &DriveAppIcon::GetIconCategory);
- converter->RegisterIntField(kSize, &DriveAppIcon::icon_side_length_);
- converter->RegisterCustomField<GURL>(kIconUrl,
- &DriveAppIcon::icon_url_,
- GetGURLFromString);
-}
-
-// static
-scoped_ptr<DriveAppIcon> DriveAppIcon::CreateFrom(const base::Value& value) {
- scoped_ptr<DriveAppIcon> resource(new DriveAppIcon());
- if (!resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid DriveAppIcon JSON!";
- return scoped_ptr<DriveAppIcon>(NULL);
- }
- return resource.Pass();
-}
-
-bool DriveAppIcon::Parse(const base::Value& value) {
- base::JSONValueConverter<DriveAppIcon> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid DriveAppIcon";
- return false;
- }
- return true;
-}
-
-// static
-bool DriveAppIcon::GetIconCategory(const base::StringPiece& category,
- DriveAppIcon::IconCategory* result) {
- for (size_t i = 0; i < arraysize(kAppIconCategoryMap); i++) {
- if (category == kAppIconCategoryMap[i].category_name) {
- *result = kAppIconCategoryMap[i].category;
- return true;
- }
- }
- DVLOG(1) << "Unknown icon category " << category;
- return false;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// AppResource implementation
-
-AppResource::AppResource() {}
-
-AppResource::~AppResource() {}
-
-// static
-void AppResource::RegisterJSONConverter(
- base::JSONValueConverter<AppResource>* converter) {
- converter->RegisterStringField(kId, &AppResource::application_id_);
- converter->RegisterStringField(kName, &AppResource::name_);
- converter->RegisterStringField(kObjectType, &AppResource::object_type_);
- converter->RegisterBoolField(kSupportsCreate, &AppResource::supports_create_);
- converter->RegisterBoolField(kSupportsImport, &AppResource::supports_import_);
- converter->RegisterBoolField(kInstalled, &AppResource::installed_);
- converter->RegisterBoolField(kAuthorized, &AppResource::authorized_);
- converter->RegisterCustomField<GURL>(kProductUrl,
- &AppResource::product_url_,
- GetGURLFromString);
- converter->RegisterRepeatedString(kPrimaryMimeTypes,
- &AppResource::primary_mimetypes_);
- converter->RegisterRepeatedString(kSecondaryMimeTypes,
- &AppResource::secondary_mimetypes_);
- converter->RegisterRepeatedString(kPrimaryFileExtensions,
- &AppResource::primary_file_extensions_);
- converter->RegisterRepeatedString(kSecondaryFileExtensions,
- &AppResource::secondary_file_extensions_);
- converter->RegisterRepeatedMessage(kIcons, &AppResource::icons_);
-}
-
-// static
-scoped_ptr<AppResource> AppResource::CreateFrom(const base::Value& value) {
- scoped_ptr<AppResource> resource(new AppResource());
- if (!IsResourceKindExpected(value, kAppKind) || !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid AppResource JSON!";
- return scoped_ptr<AppResource>(NULL);
- }
- return resource.Pass();
-}
-
-bool AppResource::Parse(const base::Value& value) {
- base::JSONValueConverter<AppResource> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid AppResource";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// AppList implementation
-
-AppList::AppList() {}
-
-AppList::~AppList() {}
-
-// static
-void AppList::RegisterJSONConverter(
- base::JSONValueConverter<AppList>* converter) {
- converter->RegisterStringField(kETag, &AppList::etag_);
- converter->RegisterRepeatedMessage<AppResource>(kItems,
- &AppList::items_);
-}
-
-// static
-scoped_ptr<AppList> AppList::CreateFrom(const base::Value& value) {
- scoped_ptr<AppList> resource(new AppList());
- if (!IsResourceKindExpected(value, kAppListKind) || !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid AppList JSON!";
- return scoped_ptr<AppList>(NULL);
- }
- return resource.Pass();
-}
-
-bool AppList::Parse(const base::Value& value) {
- base::JSONValueConverter<AppList> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid AppList";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// ParentReference implementation
-
-ParentReference::ParentReference() : is_root_(false) {}
-
-ParentReference::~ParentReference() {}
-
-// static
-void ParentReference::RegisterJSONConverter(
- base::JSONValueConverter<ParentReference>* converter) {
- converter->RegisterStringField(kId, &ParentReference::file_id_);
- converter->RegisterCustomField<GURL>(kParentLink,
- &ParentReference::parent_link_,
- GetGURLFromString);
- converter->RegisterBoolField(kIsRoot, &ParentReference::is_root_);
-}
-
-// static
-scoped_ptr<ParentReference>
-ParentReference::CreateFrom(const base::Value& value) {
- scoped_ptr<ParentReference> reference(new ParentReference());
- if (!IsResourceKindExpected(value, kParentReferenceKind) ||
- !reference->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid ParentRefernce JSON!";
- return scoped_ptr<ParentReference>(NULL);
- }
- return reference.Pass();
-}
-
-bool ParentReference::Parse(const base::Value& value) {
- base::JSONValueConverter<ParentReference> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid ParentReference";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// FileResource implementation
-
-FileResource::FileResource() : file_size_(0) {}
-
-FileResource::~FileResource() {}
-
-// static
-void FileResource::RegisterJSONConverter(
- base::JSONValueConverter<FileResource>* converter) {
- converter->RegisterStringField(kId, &FileResource::file_id_);
- converter->RegisterStringField(kETag, &FileResource::etag_);
- converter->RegisterCustomField<GURL>(kSelfLink,
- &FileResource::self_link_,
- GetGURLFromString);
- converter->RegisterStringField(kTitle, &FileResource::title_);
- converter->RegisterStringField(kMimeType, &FileResource::mime_type_);
- converter->RegisterNestedField(kLabels, &FileResource::labels_);
- converter->RegisterCustomField<base::Time>(
- kCreatedDate,
- &FileResource::created_date_,
- &gdata::util::GetTimeFromString);
- converter->RegisterCustomField<base::Time>(
- kModifiedByMeDate,
- &FileResource::modified_by_me_date_,
- &gdata::util::GetTimeFromString);
- converter->RegisterCustomField<GURL>(kDownloadUrl,
- &FileResource::download_url_,
- GetGURLFromString);
- converter->RegisterStringField(kFileExtension,
- &FileResource::file_extension_);
- converter->RegisterStringField(kMd5Checksum, &FileResource::md5_checksum_);
- converter->RegisterCustomField<int64>(kFileSize,
- &FileResource::file_size_,
- &base::StringToInt64);
- converter->RegisterCustomField<GURL>(kAlternateLink,
- &FileResource::alternate_link_,
- GetGURLFromString);
- converter->RegisterCustomField<GURL>(kEmbedLink,
- &FileResource::embed_link_,
- GetGURLFromString);
- converter->RegisterRepeatedMessage<ParentReference>(kParents,
- &FileResource::parents_);
- converter->RegisterCustomField<GURL>(kThumbnailLink,
- &FileResource::thumbnail_link_,
- GetGURLFromString);
- converter->RegisterCustomField<GURL>(kWebContentLink,
- &FileResource::web_content_link_,
- GetGURLFromString);
-}
-
-// static
-scoped_ptr<FileResource> FileResource::CreateFrom(const base::Value& value) {
- scoped_ptr<FileResource> resource(new FileResource());
- if (!IsResourceKindExpected(value, kFileKind) || !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid FileResource JSON!";
- return scoped_ptr<FileResource>(NULL);
- }
- return resource.Pass();
-}
-
-bool FileResource::IsDirectory() const {
- return mime_type_ == kDriveFolderMimeType;
-}
-
-DriveEntryKind FileResource::GetKind() const {
- if (mime_type() == kGoogleDocumentMimeType)
- return ENTRY_KIND_DOCUMENT;
- if (mime_type() == kGoogleSpreadsheetMimeType)
- return ENTRY_KIND_SPREADSHEET;
- if (mime_type() == kGooglePresentationMimeType)
- return ENTRY_KIND_PRESENTATION;
- if (mime_type() == kGoogleDrawingMimeType)
- return ENTRY_KIND_DRAWING;
- if (mime_type() == kGoogleTableMimeType)
- return ENTRY_KIND_TABLE;
- if (mime_type() == kDriveFolderMimeType)
- return ENTRY_KIND_FOLDER;
- if (mime_type() == "application/pdf")
- return ENTRY_KIND_PDF;
- return ENTRY_KIND_FILE;
-}
-
-bool FileResource::Parse(const base::Value& value) {
- base::JSONValueConverter<FileResource> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid FileResource";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// FileList implementation
-
-FileList::FileList() {}
-
-FileList::~FileList() {}
-
-// static
-void FileList::RegisterJSONConverter(
- base::JSONValueConverter<FileList>* converter) {
- converter->RegisterStringField(kETag, &FileList::etag_);
- converter->RegisterStringField(kNextPageToken, &FileList::next_page_token_);
- converter->RegisterCustomField<GURL>(kNextLink,
- &FileList::next_link_,
- GetGURLFromString);
- converter->RegisterRepeatedMessage<FileResource>(kItems,
- &FileList::items_);
-}
-
-// static
-scoped_ptr<FileList> FileList::CreateFrom(const base::Value& value) {
- scoped_ptr<FileList> resource(new FileList());
- if (!IsResourceKindExpected(value, kFileListKind) ||
- !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid FileList JSON!";
- return scoped_ptr<FileList>(NULL);
- }
- return resource.Pass();
-}
-
-bool FileList::Parse(const base::Value& value) {
- base::JSONValueConverter<FileList> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid FileList";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// ChangeResource implementation
-
-ChangeResource::ChangeResource() : change_id_(0), deleted_(false) {}
-
-ChangeResource::~ChangeResource() {}
-
-// static
-void ChangeResource::RegisterJSONConverter(
- base::JSONValueConverter<ChangeResource>* converter) {
- converter->RegisterCustomField<int64>(kId,
- &ChangeResource::change_id_,
- &base::StringToInt64);
- converter->RegisterStringField(kFileId, &ChangeResource::file_id_);
- converter->RegisterBoolField(kDeleted, &ChangeResource::deleted_);
- converter->RegisterNestedField(kFile, &ChangeResource::file_);
-}
-
-// static
-scoped_ptr<ChangeResource>
-ChangeResource::CreateFrom(const base::Value& value) {
- scoped_ptr<ChangeResource> resource(new ChangeResource());
- if (!IsResourceKindExpected(value, kChangeKind) || !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid ChangeResource JSON!";
- return scoped_ptr<ChangeResource>(NULL);
- }
- return resource.Pass();
-}
-
-bool ChangeResource::Parse(const base::Value& value) {
- base::JSONValueConverter<ChangeResource> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid ChangeResource";
- return false;
- }
- return true;
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// ChangeList implementation
-
-ChangeList::ChangeList() : largest_change_id_(0) {}
-
-ChangeList::~ChangeList() {}
-
-// static
-void ChangeList::RegisterJSONConverter(
- base::JSONValueConverter<ChangeList>* converter) {
- converter->RegisterStringField(kETag, &ChangeList::etag_);
- converter->RegisterStringField(kNextPageToken, &ChangeList::next_page_token_);
- converter->RegisterCustomField<GURL>(kNextLink,
- &ChangeList::next_link_,
- GetGURLFromString);
- converter->RegisterCustomField<int64>(kLargestChangeId,
- &ChangeList::largest_change_id_,
- &base::StringToInt64);
- converter->RegisterRepeatedMessage<ChangeResource>(kItems,
- &ChangeList::items_);
-}
-
-// static
-scoped_ptr<ChangeList> ChangeList::CreateFrom(const base::Value& value) {
- scoped_ptr<ChangeList> resource(new ChangeList());
- if (!IsResourceKindExpected(value, kChangeListKind) ||
- !resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid ChangeList JSON!";
- return scoped_ptr<ChangeList>(NULL);
- }
- return resource.Pass();
-}
-
-bool ChangeList::Parse(const base::Value& value) {
- base::JSONValueConverter<ChangeList> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid ChangeList";
- return false;
- }
- return true;
-}
-
-
-////////////////////////////////////////////////////////////////////////////////
-// FileLabels implementation
-
-FileLabels::FileLabels()
- : starred_(false),
- hidden_(false),
- trashed_(false),
- restricted_(false),
- viewed_(false) {}
-
-FileLabels::~FileLabels() {}
-
-// static
-void FileLabels::RegisterJSONConverter(
- base::JSONValueConverter<FileLabels>* converter) {
- converter->RegisterBoolField(kLabelStarred, &FileLabels::starred_);
- converter->RegisterBoolField(kLabelHidden, &FileLabels::hidden_);
- converter->RegisterBoolField(kLabelTrashed, &FileLabels::trashed_);
- converter->RegisterBoolField(kLabelRestricted, &FileLabels::restricted_);
- converter->RegisterBoolField(kLabelViewed, &FileLabels::viewed_);
-}
-
-// static
-scoped_ptr<FileLabels> FileLabels::CreateFrom(const base::Value& value) {
- scoped_ptr<FileLabels> resource(new FileLabels());
- if (!resource->Parse(value)) {
- LOG(ERROR) << "Unable to create: Invalid FileLabels JSON!";
- return scoped_ptr<FileLabels>(NULL);
- }
- return resource.Pass();
-}
-
-bool FileLabels::Parse(const base::Value& value) {
- base::JSONValueConverter<FileLabels> converter;
- if (!converter.Convert(value, this)) {
- LOG(ERROR) << "Unable to parse: Invalid FileLabels";
- return false;
- }
- return true;
-}
-
-} // namespace gdata
« no previous file with comments | « chrome/browser/chromeos/gdata/drive_api_parser.h ('k') | chrome/browser/chromeos/gdata/drive_api_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698