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_GDATA_FILES_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ |
6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ | 6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/memory/singleton.h" | 14 #include "base/memory/singleton.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/platform_file.h" | 16 #include "base/platform_file.h" |
17 #include "base/synchronization/lock.h" | 17 #include "base/synchronization/lock.h" |
18 #include "chrome/browser/chromeos/gdata/gdata_params.h" | 18 #include "chrome/browser/chromeos/gdata/gdata_params.h" |
19 #include "chrome/browser/chromeos/gdata/gdata_parser.h" | |
20 #include "chrome/browser/chromeos/gdata/gdata_uploader.h" | 19 #include "chrome/browser/chromeos/gdata/gdata_uploader.h" |
| 20 #include "chrome/browser/chromeos/gdata/gdata_wapi_parser.h" |
21 #include "chrome/browser/profiles/profile_keyed_service.h" | 21 #include "chrome/browser/profiles/profile_keyed_service.h" |
22 #include "chrome/browser/profiles/profile_keyed_service_factory.h" | 22 #include "chrome/browser/profiles/profile_keyed_service_factory.h" |
23 | 23 |
24 namespace gdata { | 24 namespace gdata { |
25 | 25 |
26 class GDataFile; | 26 class GDataFile; |
27 class GDataDirectory; | 27 class GDataDirectory; |
28 class GDataRootDirectory; | 28 class GDataRootDirectory; |
29 | 29 |
30 class GDataEntryProto; | 30 class GDataEntryProto; |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 base::Time last_serialized_; | 398 base::Time last_serialized_; |
399 int largest_changestamp_; | 399 int largest_changestamp_; |
400 size_t serialized_size_; | 400 size_t serialized_size_; |
401 | 401 |
402 DISALLOW_COPY_AND_ASSIGN(GDataRootDirectory); | 402 DISALLOW_COPY_AND_ASSIGN(GDataRootDirectory); |
403 }; | 403 }; |
404 | 404 |
405 } // namespace gdata | 405 } // namespace gdata |
406 | 406 |
407 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ | 407 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ |
OLD | NEW |