OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/ppapi_plugin/ppapi_blink_platform_impl.h" | 5 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 blink::WebThemeEngine* PpapiBlinkPlatformImpl::themeEngine() { | 213 blink::WebThemeEngine* PpapiBlinkPlatformImpl::themeEngine() { |
214 NOTREACHED(); | 214 NOTREACHED(); |
215 return NULL; | 215 return NULL; |
216 } | 216 } |
217 | 217 |
218 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { | 218 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { |
219 NOTREACHED(); | 219 NOTREACHED(); |
220 return NULL; | 220 return NULL; |
221 } | 221 } |
222 | 222 |
223 blink::WebSocketStreamHandle* | |
224 PpapiBlinkPlatformImpl::createSocketStreamHandle() { | |
225 NOTREACHED(); | |
226 return NULL; | |
227 } | |
228 | |
229 void PpapiBlinkPlatformImpl::getPluginList( | 223 void PpapiBlinkPlatformImpl::getPluginList( |
230 bool refresh, | 224 bool refresh, |
231 blink::WebPluginListBuilder* builder) { | 225 blink::WebPluginListBuilder* builder) { |
232 NOTREACHED(); | 226 NOTREACHED(); |
233 } | 227 } |
234 | 228 |
235 blink::WebData PpapiBlinkPlatformImpl::loadResource(const char* name) { | 229 blink::WebData PpapiBlinkPlatformImpl::loadResource(const char* name) { |
236 NOTREACHED(); | 230 NOTREACHED(); |
237 return blink::WebData(); | 231 return blink::WebData(); |
238 } | 232 } |
(...skipping 15 matching lines...) Expand all Loading... |
254 } | 248 } |
255 | 249 |
256 int PpapiBlinkPlatformImpl::databaseDeleteFile( | 250 int PpapiBlinkPlatformImpl::databaseDeleteFile( |
257 const blink::WebString& vfs_file_name, | 251 const blink::WebString& vfs_file_name, |
258 bool sync_dir) { | 252 bool sync_dir) { |
259 NOTREACHED(); | 253 NOTREACHED(); |
260 return 0; | 254 return 0; |
261 } | 255 } |
262 | 256 |
263 } // namespace content | 257 } // namespace content |
OLD | NEW |