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

Side by Side Diff: chrome/browser/component_updater/ppapi_utils.cc

Issue 69663002: PPAPI: Implement PPB_FileMapping on POSIX (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix missing return Created 6 years, 10 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
« no previous file with comments | « no previous file | chrome/test/ppapi/ppapi_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "chrome/browser/component_updater/ppapi_utils.h" 4 #include "chrome/browser/component_updater/ppapi_utils.h"
5 5
6 #include <cstring> 6 #include <cstring>
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "ppapi/c/dev/ppb_alarms_dev.h" 9 #include "ppapi/c/dev/ppb_alarms_dev.h"
10 #include "ppapi/c/dev/ppb_audio_input_dev.h" 10 #include "ppapi/c/dev/ppb_audio_input_dev.h"
(...skipping 23 matching lines...) Expand all
34 #include "ppapi/c/dev/ppb_view_dev.h" 34 #include "ppapi/c/dev/ppb_view_dev.h"
35 #include "ppapi/c/dev/ppb_widget_dev.h" 35 #include "ppapi/c/dev/ppb_widget_dev.h"
36 #include "ppapi/c/dev/ppb_zoom_dev.h" 36 #include "ppapi/c/dev/ppb_zoom_dev.h"
37 #include "ppapi/c/extensions/dev/ppb_ext_socket_dev.h" 37 #include "ppapi/c/extensions/dev/ppb_ext_socket_dev.h"
38 #include "ppapi/c/ppb_audio.h" 38 #include "ppapi/c/ppb_audio.h"
39 #include "ppapi/c/ppb_audio_config.h" 39 #include "ppapi/c/ppb_audio_config.h"
40 #include "ppapi/c/ppb_audio_frame.h" 40 #include "ppapi/c/ppb_audio_frame.h"
41 #include "ppapi/c/ppb_console.h" 41 #include "ppapi/c/ppb_console.h"
42 #include "ppapi/c/ppb_core.h" 42 #include "ppapi/c/ppb_core.h"
43 #include "ppapi/c/ppb_file_io.h" 43 #include "ppapi/c/ppb_file_io.h"
44 #include "ppapi/c/ppb_file_mapping.h"
44 #include "ppapi/c/ppb_file_ref.h" 45 #include "ppapi/c/ppb_file_ref.h"
45 #include "ppapi/c/ppb_file_system.h" 46 #include "ppapi/c/ppb_file_system.h"
46 #include "ppapi/c/ppb_fullscreen.h" 47 #include "ppapi/c/ppb_fullscreen.h"
47 #include "ppapi/c/ppb_gamepad.h" 48 #include "ppapi/c/ppb_gamepad.h"
48 #include "ppapi/c/ppb_graphics_2d.h" 49 #include "ppapi/c/ppb_graphics_2d.h"
49 #include "ppapi/c/ppb_graphics_3d.h" 50 #include "ppapi/c/ppb_graphics_3d.h"
50 #include "ppapi/c/ppb_host_resolver.h" 51 #include "ppapi/c/ppb_host_resolver.h"
51 #include "ppapi/c/ppb_image_data.h" 52 #include "ppapi/c/ppb_image_data.h"
52 #include "ppapi/c/ppb_input_event.h" 53 #include "ppapi/c/ppb_input_event.h"
53 #include "ppapi/c/ppb_instance.h" 54 #include "ppapi/c/ppb_instance.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 134
134 #define LEGACY_IFACE(iface_str, dummy) \ 135 #define LEGACY_IFACE(iface_str, dummy) \
135 if (strcmp(name, iface_str) == 0) \ 136 if (strcmp(name, iface_str) == 0) \
136 return true; 137 return true;
137 138
138 #include "ppapi/thunk/interfaces_legacy.h" 139 #include "ppapi/thunk/interfaces_legacy.h"
139 140
140 #undef LEGACY_IFACE 141 #undef LEGACY_IFACE
141 return false; 142 return false;
142 } 143 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/ppapi/ppapi_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698