| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SYNC_FILE_SYSTEM_DRIVE_BACKEND_METADATA_DATABASE_INDEX_IN
TERFACE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_METADATA_DATABASE_INDEX_IN
TERFACE_H_ |
| 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_METADATA_DATABASE_INDEX_IN
TERFACE_H_ | 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_METADATA_DATABASE_INDEX_IN
TERFACE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 | 13 |
| 13 namespace sync_file_system { | 14 namespace sync_file_system { |
| 14 namespace drive_backend { | 15 namespace drive_backend { |
| 15 | 16 |
| 16 class FileMetadata; | 17 class FileMetadata; |
| 17 class FileTracker; | 18 class FileTracker; |
| 18 class TrackerIDSet; | 19 class TrackerIDSet; |
| 19 | 20 |
| 20 struct ParentIDAndTitle { | 21 struct ParentIDAndTitle { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 virtual std::vector<std::string> GetAllMetadataIDs() const = 0; | 119 virtual std::vector<std::string> GetAllMetadataIDs() const = 0; |
| 119 | 120 |
| 120 private: | 121 private: |
| 121 DISALLOW_COPY_AND_ASSIGN(MetadataDatabaseIndexInterface); | 122 DISALLOW_COPY_AND_ASSIGN(MetadataDatabaseIndexInterface); |
| 122 }; | 123 }; |
| 123 | 124 |
| 124 } // namespace drive_backend | 125 } // namespace drive_backend |
| 125 } // namespace sync_file_system | 126 } // namespace sync_file_system |
| 126 | 127 |
| 127 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_METADATA_DATABASE_INDEX
_INTERFACE_H_ | 128 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_METADATA_DATABASE_INDEX
_INTERFACE_H_ |
| OLD | NEW |