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

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

Issue 2156803002: [HBD] Remove PluginCache and reload plugin list when origin changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add comment Created 4 years, 3 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
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 <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 10
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 return NULL; 208 return NULL;
209 } 209 }
210 210
211 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { 211 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() {
212 NOTREACHED(); 212 NOTREACHED();
213 return NULL; 213 return NULL;
214 } 214 }
215 215
216 void PpapiBlinkPlatformImpl::getPluginList( 216 void PpapiBlinkPlatformImpl::getPluginList(
217 bool refresh, 217 bool refresh,
218 const blink::WebSecurityOrigin& mainFrameOrigin,
218 blink::WebPluginListBuilder* builder) { 219 blink::WebPluginListBuilder* builder) {
219 NOTREACHED(); 220 NOTREACHED();
220 } 221 }
221 222
222 blink::WebData PpapiBlinkPlatformImpl::loadResource(const char* name) { 223 blink::WebData PpapiBlinkPlatformImpl::loadResource(const char* name) {
223 NOTREACHED(); 224 NOTREACHED();
224 return blink::WebData(); 225 return blink::WebData();
225 } 226 }
226 227
227 blink::WebStorageNamespace* 228 blink::WebStorageNamespace*
(...skipping 13 matching lines...) Expand all
241 } 242 }
242 243
243 int PpapiBlinkPlatformImpl::databaseDeleteFile( 244 int PpapiBlinkPlatformImpl::databaseDeleteFile(
244 const blink::WebString& vfs_file_name, 245 const blink::WebString& vfs_file_name,
245 bool sync_dir) { 246 bool sync_dir) {
246 NOTREACHED(); 247 NOTREACHED();
247 return 0; 248 return 0;
248 } 249 }
249 250
250 } // namespace content 251 } // namespace content
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.h ('k') | content/renderer/renderer_blink_platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698