| 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 #include "chrome/browser/extensions/api/file_system/file_system_api.h" | 5 #include "chrome/browser/extensions/api/file_system/file_system_api.h" |
| 6 | 6 |
| 7 #include <set> |
| 8 |
| 7 #include "apps/app_window.h" | 9 #include "apps/app_window.h" |
| 8 #include "apps/app_window_registry.h" | 10 #include "apps/app_window_registry.h" |
| 9 #include "apps/saved_files_service.h" | 11 #include "apps/saved_files_service.h" |
| 10 #include "base/bind.h" | 12 #include "base/bind.h" |
| 11 #include "base/file_util.h" | 13 #include "base/file_util.h" |
| 12 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 13 #include "base/logging.h" | 15 #include "base/logging.h" |
| 14 #include "base/path_service.h" | 16 #include "base/path_service.h" |
| 15 #include "base/strings/string_util.h" | 17 #include "base/strings/string_util.h" |
| 16 #include "base/strings/stringprintf.h" | 18 #include "base/strings/stringprintf.h" |
| (...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 return false; | 944 return false; |
| 943 } | 945 } |
| 944 | 946 |
| 945 bool FileSystemGetObservedEntriesFunction::RunSync() { | 947 bool FileSystemGetObservedEntriesFunction::RunSync() { |
| 946 NOTIMPLEMENTED(); | 948 NOTIMPLEMENTED(); |
| 947 error_ = kUnknownIdError; | 949 error_ = kUnknownIdError; |
| 948 return false; | 950 return false; |
| 949 } | 951 } |
| 950 | 952 |
| 951 } // namespace extensions | 953 } // namespace extensions |
| OLD | NEW |