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

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

Issue 304533003: [fsp] Rename has_next to has_more. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 6 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 | Annotate | Revision Log
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/close_file.h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/close_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 19 matching lines...) Expand all
30 values->AppendInteger(open_request_id_); 30 values->AppendInteger(open_request_id_);
31 31
32 return SendEvent( 32 return SendEvent(
33 request_id, 33 request_id,
34 extensions::api::file_system_provider::OnCloseFileRequested::kEventName, 34 extensions::api::file_system_provider::OnCloseFileRequested::kEventName,
35 values.Pass()); 35 values.Pass());
36 } 36 }
37 37
38 void CloseFile::OnSuccess(int /* request_id */, 38 void CloseFile::OnSuccess(int /* request_id */,
39 scoped_ptr<RequestValue> result, 39 scoped_ptr<RequestValue> result,
40 bool has_next) { 40 bool has_more) {
41 callback_.Run(base::File::FILE_OK); 41 callback_.Run(base::File::FILE_OK);
42 } 42 }
43 43
44 void CloseFile::OnError(int /* request_id */, base::File::Error error) { 44 void CloseFile::OnError(int /* request_id */, base::File::Error error) {
45 callback_.Run(error); 45 callback_.Run(error);
46 } 46 }
47 47
48 } // namespace operations 48 } // namespace operations
49 } // namespace file_system_provider 49 } // namespace file_system_provider
50 } // namespace chromeos 50 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698