Index: chrome/browser/chromeos/gdata/gdata_parser.h |
diff --git a/chrome/browser/chromeos/gdata/gdata_parser.h b/chrome/browser/chromeos/gdata/gdata_parser.h |
index 90d4599c5b38e5da61c064146a09a1cd45e44862..009c6753065fa4bb1f505aeda887d2608d23ee86 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_parser.h |
+++ b/chrome/browser/chromeos/gdata/gdata_parser.h |
@@ -676,27 +676,18 @@ class AccountMetadataFeed { |
return installed_apps_; |
} |
- // Registers the mapping between JSON field names and the members in |
- // this class. |
- static void RegisterJSONConverter( |
- base::JSONValueConverter<AccountMetadataFeed>* converter); |
- |
- private: |
+ protected: |
AccountMetadataFeed(); |
- // Parses and initializes data members from content of |value|. |
- // Return false if parsing fails. |
- bool Parse(const base::Value& value); |
- |
int64 quota_bytes_total_; |
int64 quota_bytes_used_; |
int largest_changestamp_; |
ScopedVector<InstalledApp> installed_apps_; |
+ private: |
DISALLOW_COPY_AND_ASSIGN(AccountMetadataFeed); |
}; |
- |
} // namespace gdata |
#endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_PARSER_H_ |