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 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/singleton.h" | 16 #include "base/memory/singleton.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/platform_file.h" | 18 #include "base/platform_file.h" |
19 #include "base/synchronization/lock.h" | 19 #include "base/synchronization/lock.h" |
20 #include "chrome/browser/chromeos/gdata/find_entry_callback.h" | |
21 #include "chrome/browser/chromeos/gdata/gdata_params.h" | 20 #include "chrome/browser/chromeos/gdata/gdata_params.h" |
22 #include "chrome/browser/chromeos/gdata/gdata_parser.h" | 21 #include "chrome/browser/chromeos/gdata/gdata_parser.h" |
23 #include "chrome/browser/chromeos/gdata/gdata_uploader.h" | 22 #include "chrome/browser/chromeos/gdata/gdata_uploader.h" |
24 #include "chrome/browser/profiles/profile_keyed_service.h" | 23 #include "chrome/browser/profiles/profile_keyed_service.h" |
25 #include "chrome/browser/profiles/profile_keyed_service_factory.h" | 24 #include "chrome/browser/profiles/profile_keyed_service_factory.h" |
26 | 25 |
27 namespace gdata { | 26 namespace gdata { |
28 | 27 |
29 class GDataFile; | 28 class GDataFile; |
30 class GDataDirectory; | 29 class GDataDirectory; |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 base::Time last_serialized_; | 423 base::Time last_serialized_; |
425 int largest_changestamp_; | 424 int largest_changestamp_; |
426 size_t serialized_size_; | 425 size_t serialized_size_; |
427 | 426 |
428 DISALLOW_COPY_AND_ASSIGN(GDataRootDirectory); | 427 DISALLOW_COPY_AND_ASSIGN(GDataRootDirectory); |
429 }; | 428 }; |
430 | 429 |
431 } // namespace gdata | 430 } // namespace gdata |
432 | 431 |
433 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ | 432 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_FILES_H_ |
OLD | NEW |