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

Side by Side Diff: webkit/plugins/ppapi/ppb_directory_reader_impl.h

Issue 10081020: PPAPI: Make blocking completion callbacks work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated TestURLLoader to test blocking callbacks. Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_DIRECTORY_READER_IMPL_H_ 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_DIRECTORY_READER_IMPL_H_
6 #define WEBKIT_PLUGINS_PPAPI_PPB_DIRECTORY_READER_IMPL_H_ 6 #define WEBKIT_PLUGINS_PPAPI_PPB_DIRECTORY_READER_IMPL_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/file_util_proxy.h" 11 #include "base/file_util_proxy.h"
12 #include "ppapi/shared_impl/resource.h" 12 #include "ppapi/shared_impl/resource.h"
13 #include "ppapi/thunk/ppb_directory_reader_api.h" 13 #include "ppapi/thunk/ppb_directory_reader_api.h"
14 14
15 struct PP_CompletionCallback;
16 struct PP_DirectoryEntry_Dev; 15 struct PP_DirectoryEntry_Dev;
17 16
18 namespace webkit { 17 namespace webkit {
19 namespace ppapi { 18 namespace ppapi {
20 19
21 class PPB_FileRef_Impl; 20 class PPB_FileRef_Impl;
22 21
23 class PPB_DirectoryReader_Impl 22 class PPB_DirectoryReader_Impl
24 : public ::ppapi::Resource, 23 : public ::ppapi::Resource,
25 public ::ppapi::thunk::PPB_DirectoryReader_API { 24 public ::ppapi::thunk::PPB_DirectoryReader_API {
26 public: 25 public:
27 explicit PPB_DirectoryReader_Impl(PPB_FileRef_Impl* directory_ref); 26 explicit PPB_DirectoryReader_Impl(PPB_FileRef_Impl* directory_ref);
28 virtual ~PPB_DirectoryReader_Impl(); 27 virtual ~PPB_DirectoryReader_Impl();
29 28
30 static PP_Resource Create(PP_Resource directory_ref); 29 static PP_Resource Create(PP_Resource directory_ref);
31 30
32 // Resource overrides. 31 // Resource overrides.
33 virtual ::ppapi::thunk::PPB_DirectoryReader_API* AsPPB_DirectoryReader_API() 32 virtual ::ppapi::thunk::PPB_DirectoryReader_API* AsPPB_DirectoryReader_API()
34 OVERRIDE; 33 OVERRIDE;
35 34
36 // PPB_DirectoryReader_API implementation. 35 // PPB_DirectoryReader_API implementation.
37 virtual int32_t GetNextEntry(PP_DirectoryEntry_Dev* entry, 36 virtual int32_t GetNextEntry(PP_DirectoryEntry_Dev* entry,
38 PP_CompletionCallback callback) OVERRIDE; 37 ::ppapi::ApiCallbackType callback) OVERRIDE;
39 38
40 void AddNewEntries(const std::vector<base::FileUtilProxy::Entry>& entries, 39 void AddNewEntries(const std::vector<base::FileUtilProxy::Entry>& entries,
41 bool has_more); 40 bool has_more);
42 41
43 private: 42 private:
44 bool FillUpEntry(); 43 bool FillUpEntry();
45 44
46 scoped_refptr<PPB_FileRef_Impl> directory_ref_; 45 scoped_refptr<PPB_FileRef_Impl> directory_ref_;
47 std::queue<base::FileUtilProxy::Entry> entries_; 46 std::queue<base::FileUtilProxy::Entry> entries_;
48 bool has_more_; 47 bool has_more_;
49 PP_DirectoryEntry_Dev* entry_; 48 PP_DirectoryEntry_Dev* entry_;
50 }; 49 };
51 50
52 } // namespace ppapi 51 } // namespace ppapi
53 } // namespace webkit 52 } // namespace webkit
54 53
55 #endif // WEBKIT_PLUGINS_PPAPI_PPB_DIRECTORY_READER_IMPL_H_ 54 #endif // WEBKIT_PLUGINS_PPAPI_PPB_DIRECTORY_READER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698