Chromium Code Reviews| Index: chrome/browser/google_apis/drive_api_parser.h |
| diff --git a/chrome/browser/chromeos/gdata/drive_api_parser.h b/chrome/browser/google_apis/drive_api_parser.h |
| similarity index 98% |
| rename from chrome/browser/chromeos/gdata/drive_api_parser.h |
| rename to chrome/browser/google_apis/drive_api_parser.h |
| index a41792eda0a0ee1a2a7cdf3a678bb9c9fbb440db..d436a49e5249d2b75940ff00f5e01cd375540d4c 100644 |
| --- a/chrome/browser/chromeos/gdata/drive_api_parser.h |
| +++ b/chrome/browser/google_apis/drive_api_parser.h |
| @@ -2,8 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_API_PARSER_H_ |
| -#define CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_API_PARSER_H_ |
| +#ifndef CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_PARSER_H_ |
| +#define CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_PARSER_H_ |
| #include <string> |
| #include <vector> |
| @@ -98,7 +98,7 @@ class DriveAppIcon { |
| IconCategory category() const { return category_; } |
| // Size in pixels of one side of the icon (icons are always square). |
| - const int icon_side_length() const { return icon_side_length_; } |
| + int icon_side_length() const { return icon_side_length_; } |
|
satorux1
2012/09/07 17:22:32
I'd suggest to make changes like this in a separat
nhiroki
2012/09/10 07:17:38
I made the separate patch (http://codereview.chrom
|
| // Returns URL for this icon. |
| const GURL& icon_url() const { return icon_url_; } |
| @@ -590,4 +590,4 @@ class ChangeList { |
| } // namespace gdata |
| -#endif // CHROME_BROWSER_CHROMEOS_GDATA_DRIVE_API_PARSER_H_ |
| +#endif // CHROME_BROWSER_GOOGLE_APIS_DRIVE_API_PARSER_H_ |