| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_WEBAPPS_REGISTRY_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_WEBAPPS_REGISTRY_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_WEBAPPS_REGISTRY_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_WEBAPPS_REGISTRY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
| 15 #include "chrome/browser/chromeos/gdata/gdata_parser.h" | 15 #include "chrome/browser/chromeos/gdata/gdata_wapi_parser.h" |
| 16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
| 17 | 17 |
| 18 namespace gdata { | 18 namespace gdata { |
| 19 | 19 |
| 20 // Data structure that defines WebApp | 20 // Data structure that defines WebApp |
| 21 struct DriveWebAppInfo { | 21 struct DriveWebAppInfo { |
| 22 DriveWebAppInfo(const std::string& app_id, | 22 DriveWebAppInfo(const std::string& app_id, |
| 23 const InstalledApp::IconList& app_icons, | 23 const InstalledApp::IconList& app_icons, |
| 24 const InstalledApp::IconList& document_icons, | 24 const InstalledApp::IconList& document_icons, |
| 25 const std::string& web_store_id, | 25 const std::string& web_store_id, |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 143 |
| 144 // Map of MIME type to application info. | 144 // Map of MIME type to application info. |
| 145 WebAppFileSelectorMap webapp_mimetypes_map_; | 145 WebAppFileSelectorMap webapp_mimetypes_map_; |
| 146 | 146 |
| 147 DISALLOW_COPY_AND_ASSIGN(DriveWebAppsRegistry); | 147 DISALLOW_COPY_AND_ASSIGN(DriveWebAppsRegistry); |
| 148 }; | 148 }; |
| 149 | 149 |
| 150 } // namespace gdata | 150 } // namespace gdata |
| 151 | 151 |
| 152 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_WEBAPPS_REGISTRY_H_ | 152 #endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_WEBAPPS_REGISTRY_H_ |
| OLD | NEW |