OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "chrome/browser/sync_file_system/drive_backend/fake_api_util.h" | 5 #include "chrome/browser/sync_file_system/drive_backend_v1/fake_api_util.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/location.h" | 10 #include "base/location.h" |
11 #include "base/message_loop/message_loop_proxy.h" | 11 #include "base/message_loop/message_loop_proxy.h" |
12 #include "chrome/browser/google_apis/drive_entry_kinds.h" | 12 #include "chrome/browser/google_apis/drive_entry_kinds.h" |
13 #include "webkit/common/blob/scoped_file.h" | 13 #include "webkit/common/blob/scoped_file.h" |
14 | 14 |
15 namespace sync_file_system { | 15 namespace sync_file_system { |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 case SYNC_FILE_TYPE_UNKNOWN: | 268 case SYNC_FILE_TYPE_UNKNOWN: |
269 entry->set_kind(google_apis::ENTRY_KIND_UNKNOWN); | 269 entry->set_kind(google_apis::ENTRY_KIND_UNKNOWN); |
270 break; | 270 break; |
271 } | 271 } |
272 | 272 |
273 return entry.Pass(); | 273 return entry.Pass(); |
274 } | 274 } |
275 | 275 |
276 } // namespace drive_backend | 276 } // namespace drive_backend |
277 } // namespace sync_file_system | 277 } // namespace sync_file_system |
OLD | NEW |