Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/open_file.cc

Issue 1870793002: Convert //chrome/browser/chromeos from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/open_file.h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/open_file.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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 return SendEvent( 53 return SendEvent(
54 request_id, 54 request_id,
55 extensions::events::FILE_SYSTEM_PROVIDER_ON_OPEN_FILE_REQUESTED, 55 extensions::events::FILE_SYSTEM_PROVIDER_ON_OPEN_FILE_REQUESTED,
56 extensions::api::file_system_provider::OnOpenFileRequested::kEventName, 56 extensions::api::file_system_provider::OnOpenFileRequested::kEventName,
57 extensions::api::file_system_provider::OnOpenFileRequested::Create( 57 extensions::api::file_system_provider::OnOpenFileRequested::Create(
58 options)); 58 options));
59 } 59 }
60 60
61 void OpenFile::OnSuccess(int request_id, 61 void OpenFile::OnSuccess(int request_id,
62 scoped_ptr<RequestValue> result, 62 std::unique_ptr<RequestValue> result,
63 bool has_more) { 63 bool has_more) {
64 // File handle is the same as request id of the OpenFile operation. 64 // File handle is the same as request id of the OpenFile operation.
65 callback_.Run(request_id, base::File::FILE_OK); 65 callback_.Run(request_id, base::File::FILE_OK);
66 } 66 }
67 67
68 void OpenFile::OnError(int /* request_id */, 68 void OpenFile::OnError(int /* request_id */,
69 scoped_ptr<RequestValue> /* result */, 69 std::unique_ptr<RequestValue> /* result */,
70 base::File::Error error) { 70 base::File::Error error) {
71 callback_.Run(0 /* file_handle */, error); 71 callback_.Run(0 /* file_handle */, error);
72 } 72 }
73 73
74 } // namespace operations 74 } // namespace operations
75 } // namespace file_system_provider 75 } // namespace file_system_provider
76 } // namespace chromeos 76 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698