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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

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: Address issues pointed in comments Created 4 years, 4 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 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 long long size) override; 121 long long size) override;
122 blink::WebString databaseCreateOriginIdentifier( 122 blink::WebString databaseCreateOriginIdentifier(
123 const blink::WebSecurityOrigin& origin) override; 123 const blink::WebSecurityOrigin& origin) override;
124 124
125 blink::WebString signedPublicKeyAndChallengeString( 125 blink::WebString signedPublicKeyAndChallengeString(
126 unsigned key_size_index, 126 unsigned key_size_index,
127 const blink::WebString& challenge, 127 const blink::WebString& challenge,
128 const blink::WebURL& url, 128 const blink::WebURL& url,
129 const blink::WebURL& top_origin) override; 129 const blink::WebURL& top_origin) override;
130 void getPluginList(bool refresh, 130 void getPluginList(bool refresh,
131 const blink::WebSecurityOrigin* origin,
131 blink::WebPluginListBuilder* builder) override; 132 blink::WebPluginListBuilder* builder) override;
132 blink::WebPublicSuffixList* publicSuffixList() override; 133 blink::WebPublicSuffixList* publicSuffixList() override;
133 blink::WebScrollbarBehavior* scrollbarBehavior() override; 134 blink::WebScrollbarBehavior* scrollbarBehavior() override;
134 blink::WebIDBFactory* idbFactory() override; 135 blink::WebIDBFactory* idbFactory() override;
135 blink::WebServiceWorkerCacheStorage* cacheStorage( 136 blink::WebServiceWorkerCacheStorage* cacheStorage(
136 const blink::WebSecurityOrigin& security_origin) override; 137 const blink::WebSecurityOrigin& security_origin) override;
137 blink::WebFileSystem* fileSystem() override; 138 blink::WebFileSystem* fileSystem() override;
138 blink::WebString fileSystemCreateOriginIdentifier( 139 blink::WebString fileSystemCreateOriginIdentifier(
139 const blink::WebSecurityOrigin& origin) override; 140 const blink::WebSecurityOrigin& origin) override;
140 141
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
305 306
306 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; 307 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_;
307 308
308 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
309 }; 310 };
310 311
311 } // namespace content 312 } // namespace content
312 313
313 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698