AppIcon            70 chrome/browser/drive/drive_api_util.cc ConvertAppIconToDriveAppIcon(const google_apis::AppIcon& app_icon) {
AppIcon            74 chrome/browser/drive/drive_api_util.cc     case google_apis::AppIcon::ICON_UNKNOWN:
AppIcon            77 chrome/browser/drive/drive_api_util.cc     case google_apis::AppIcon::ICON_DOCUMENT:
AppIcon            80 chrome/browser/drive/drive_api_util.cc     case google_apis::AppIcon::ICON_APPLICATION:
AppIcon            83 chrome/browser/drive/drive_api_util.cc     case google_apis::AppIcon::ICON_SHARED_DOCUMENT:
AppIcon           127 chrome/browser/drive/drive_api_util.cc     const ScopedVector<google_apis::AppIcon>& app_icons =
AppIcon            25 chrome/browser/drive/drive_api_util.h class AppIcon;
AppIcon           142 chrome/browser/drive/drive_api_util_unittest.cc       ScopedVector<google_apis::AppIcon> app_icons;
AppIcon           143 chrome/browser/drive/drive_api_util_unittest.cc       scoped_ptr<google_apis::AppIcon> app_icon(new google_apis::AppIcon);
AppIcon           144 chrome/browser/drive/drive_api_util_unittest.cc       app_icon->set_category(google_apis::AppIcon::ICON_DOCUMENT);
AppIcon           190 google_apis/drive/gdata_wapi_parser.cc   AppIcon::IconCategory category;
AppIcon           195 google_apis/drive/gdata_wapi_parser.cc     { AppIcon::ICON_DOCUMENT, "document" },
AppIcon           196 google_apis/drive/gdata_wapi_parser.cc     { AppIcon::ICON_APPLICATION, "application" },
AppIcon           197 google_apis/drive/gdata_wapi_parser.cc     { AppIcon::ICON_SHARED_DOCUMENT, "documentShared" },
AppIcon           383 google_apis/drive/gdata_wapi_parser.cc AppIcon::AppIcon() : category_(AppIcon::ICON_UNKNOWN), icon_side_length_(0) {
AppIcon           386 google_apis/drive/gdata_wapi_parser.cc AppIcon::~AppIcon() {
AppIcon           390 google_apis/drive/gdata_wapi_parser.cc void AppIcon::RegisterJSONConverter(
AppIcon           391 google_apis/drive/gdata_wapi_parser.cc     base::JSONValueConverter<AppIcon>* converter) {
AppIcon           392 google_apis/drive/gdata_wapi_parser.cc   converter->RegisterCustomField<AppIcon::IconCategory>(
AppIcon           394 google_apis/drive/gdata_wapi_parser.cc       &AppIcon::category_,
AppIcon           395 google_apis/drive/gdata_wapi_parser.cc       &AppIcon::GetIconCategory);
AppIcon           397 google_apis/drive/gdata_wapi_parser.cc                                       &AppIcon::icon_side_length_,
AppIcon           399 google_apis/drive/gdata_wapi_parser.cc   converter->RegisterRepeatedMessage(kLinkField, &AppIcon::links_);
AppIcon           402 google_apis/drive/gdata_wapi_parser.cc GURL AppIcon::GetIconURL() const {
AppIcon           411 google_apis/drive/gdata_wapi_parser.cc bool AppIcon::GetIconCategory(const base::StringPiece& category,
AppIcon           412 google_apis/drive/gdata_wapi_parser.cc                               AppIcon::IconCategory* result) {
AppIcon           761 google_apis/drive/gdata_wapi_parser.cc     AppIcon::IconCategory category) const {
AppIcon           764 google_apis/drive/gdata_wapi_parser.cc   for (ScopedVector<AppIcon>::const_iterator icon_iter = app_icons_.begin();
AppIcon           258 google_apis/drive/gdata_wapi_parser.h class AppIcon {
AppIcon           268 google_apis/drive/gdata_wapi_parser.h   AppIcon();
AppIcon           269 google_apis/drive/gdata_wapi_parser.h   ~AppIcon();
AppIcon           274 google_apis/drive/gdata_wapi_parser.h       base::JSONValueConverter<AppIcon>* converter);
AppIcon           305 google_apis/drive/gdata_wapi_parser.h   DISALLOW_COPY_AND_ASSIGN(AppIcon);
AppIcon           749 google_apis/drive/gdata_wapi_parser.h   const ScopedVector<AppIcon>& app_icons() const {
AppIcon           755 google_apis/drive/gdata_wapi_parser.h   IconList GetIconsForCategory(AppIcon::IconCategory category) const;
AppIcon           792 google_apis/drive/gdata_wapi_parser.h   void set_app_icons(ScopedVector<AppIcon> app_icons) {
AppIcon           811 google_apis/drive/gdata_wapi_parser.h   ScopedVector<AppIcon> app_icons_;
AppIcon           282 google_apis/drive/gdata_wapi_parser_unittest.cc   EXPECT_EQ(AppIcon::ICON_DOCUMENT, first_app->app_icons()[0]->category());
AppIcon           287 google_apis/drive/gdata_wapi_parser_unittest.cc     first_app->GetIconsForCategory(AppIcon::ICON_DOCUMENT);
AppIcon           290 google_apis/drive/gdata_wapi_parser_unittest.cc   icons = first_app->GetIconsForCategory(AppIcon::ICON_SHARED_DOCUMENT);