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

Unified Diff: chrome/browser/google_apis/drive_api_parser.h

Issue 15932010: drive: Rename DriveWebApp* to DriveApp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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/google_apis/drive_api_parser.h
diff --git a/chrome/browser/google_apis/drive_api_parser.h b/chrome/browser/google_apis/drive_api_parser.h
index b35516484cfca48b45082e063004c396e0030832..64f19cc818892d62cb9057951e7d4cc04e9e984c 100644
--- a/chrome/browser/google_apis/drive_api_parser.h
+++ b/chrome/browser/google_apis/drive_api_parser.h
@@ -97,15 +97,15 @@ class AboutResource {
DISALLOW_COPY_AND_ASSIGN(AboutResource);
};
-// DriveAppIcon represents an icon for Drive Application.
-// https://developers.google.com/drive/v2/reference/apps/list
+// DriveAppIcon represents an icon for Drive Application. See also:
+// https://developers.google.com/drive/v2/reference/apps
class DriveAppIcon {
public:
enum IconCategory {
- UNKNOWN, // Uninitialized state
- DOCUMENT, // Document icon for various MIME types
- APPLICATION, // Application icon for various MIME types
- SHARED_DOCUMENT, // Icon for documents that are shared from other users.
+ UNKNOWN, // Uninitialized state.
+ DOCUMENT, // Icon for a file associated with the app.
+ APPLICATION, // Icon for the application.
+ SHARED_DOCUMENT, // Con for a shared file associated with the app.
hashimoto 2013/05/28 03:59:47 nit: s/Con/Icon/?
satorux1 2013/05/28 04:05:16 Done.
};
DriveAppIcon();
@@ -164,7 +164,7 @@ class DriveAppIcon {
};
// AppResource represents a Drive Application.
-// https://developers.google.com/drive/v2/reference/apps/list
+// https://developers.google.com/drive/v2/reference/apps
class AppResource {
public:
~AppResource();

Powered by Google App Engine
This is Rietveld 408576698