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

Side by Side Diff: content/ppapi_plugin/ppapi_blink_platform_impl.cc

Issue 655253006: Remove old WebSocket implementation from content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 2 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
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.h ('k') | content/renderer/render_frame_impl.h » ('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) 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
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
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
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698