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

Side by Side Diff: ppapi/proxy/file_mapping_resource_win.cc

Issue 69663002: PPAPI: Implement PPB_FileMapping on POSIX (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bbudge review comment, fix windows build (probably) Created 6 years, 11 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
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ppapi/proxy/file_mapping_resource.h"
6
7 #include "ppapi/c/pp_errors.h"
8
9 namespace ppapi {
10 namespace proxy {
11
12 // static
13 FileMappingResource::MapResult FileMappingResource::DoMap(
14 scoped_refptr<FileIOResource::FileHandleHolder> handle,
15 void* address_hint,
16 int64_t length,
17 uint32_t map_protection,
18 uint32_t map_flags,
19 int64_t offset) {
20 // TODO(dmichael): Implement for Windows (crbug.com/83774).
21 MapResult map_result;
22 map_result.result = PP_ERROR_NOTSUPPORTED;
23 return map_result;
24 }
25
26 // static
27 int32_t FileMappingResource::DoUnmap(const void* address, int64_t length) {
28 // TODO(dmichael): Implement for Windows (crbug.com/83774).
29 return PP_ERROR_NOTSUPPORTED;
30 }
31
32 // static
33 int64_t FileMappingResource::DoGetMapPageSize() {
34 // TODO(dmichael): Implement for Windows (crbug.com/83774).
35 return 0;
36 }
37
38 } // namespace proxy
39 } // namespace ppapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698