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