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(); |