| 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 #include "chrome/browser/chromeos/file_system_provider/operations/remove_watcher
.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/remove_watcher
.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "chrome/common/extensions/api/file_system_provider.h" | 9 #include "chrome/common/extensions/api/file_system_provider.h" |
| 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" | 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 return SendEvent( | 40 return SendEvent( |
| 41 request_id, | 41 request_id, |
| 42 extensions::events::FILE_SYSTEM_PROVIDER_ON_REMOVE_WATCHER_REQUESTED, | 42 extensions::events::FILE_SYSTEM_PROVIDER_ON_REMOVE_WATCHER_REQUESTED, |
| 43 extensions::api::file_system_provider::OnRemoveWatcherRequested:: | 43 extensions::api::file_system_provider::OnRemoveWatcherRequested:: |
| 44 kEventName, | 44 kEventName, |
| 45 extensions::api::file_system_provider::OnRemoveWatcherRequested::Create( | 45 extensions::api::file_system_provider::OnRemoveWatcherRequested::Create( |
| 46 options)); | 46 options)); |
| 47 } | 47 } |
| 48 | 48 |
| 49 void RemoveWatcher::OnSuccess(int /* request_id */, | 49 void RemoveWatcher::OnSuccess(int /* request_id */, |
| 50 scoped_ptr<RequestValue> /* result */, | 50 std::unique_ptr<RequestValue> /* result */, |
| 51 bool has_more) { | 51 bool has_more) { |
| 52 callback_.Run(base::File::FILE_OK); | 52 callback_.Run(base::File::FILE_OK); |
| 53 } | 53 } |
| 54 | 54 |
| 55 void RemoveWatcher::OnError(int /* request_id */, | 55 void RemoveWatcher::OnError(int /* request_id */, |
| 56 scoped_ptr<RequestValue> /* result */, | 56 std::unique_ptr<RequestValue> /* result */, |
| 57 base::File::Error error) { | 57 base::File::Error error) { |
| 58 callback_.Run(error); | 58 callback_.Run(error); |
| 59 } | 59 } |
| 60 | 60 |
| 61 } // namespace operations | 61 } // namespace operations |
| 62 } // namespace file_system_provider | 62 } // namespace file_system_provider |
| 63 } // namespace chromeos | 63 } // namespace chromeos |
| OLD | NEW |