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

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: Move stored SecurityOrigin to PluginData 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 long long size) override; 122 long long size) override;
123 blink::WebString databaseCreateOriginIdentifier( 123 blink::WebString databaseCreateOriginIdentifier(
124 const blink::WebSecurityOrigin& origin) override; 124 const blink::WebSecurityOrigin& origin) override;
125 125
126 blink::WebString signedPublicKeyAndChallengeString( 126 blink::WebString signedPublicKeyAndChallengeString(
127 unsigned key_size_index, 127 unsigned key_size_index,
128 const blink::WebString& challenge, 128 const blink::WebString& challenge,
129 const blink::WebURL& url, 129 const blink::WebURL& url,
130 const blink::WebURL& top_origin) override; 130 const blink::WebURL& top_origin) override;
131 void getPluginList(bool refresh, 131 void getPluginList(bool refresh,
132 const blink::WebSecurityOrigin& mainFrameOrigin,
132 blink::WebPluginListBuilder* builder) override; 133 blink::WebPluginListBuilder* builder) override;
133 blink::WebPublicSuffixList* publicSuffixList() override; 134 blink::WebPublicSuffixList* publicSuffixList() override;
134 blink::WebScrollbarBehavior* scrollbarBehavior() override; 135 blink::WebScrollbarBehavior* scrollbarBehavior() override;
135 blink::WebIDBFactory* idbFactory() override; 136 blink::WebIDBFactory* idbFactory() override;
136 blink::WebServiceWorkerCacheStorage* cacheStorage( 137 blink::WebServiceWorkerCacheStorage* cacheStorage(
137 const blink::WebSecurityOrigin& security_origin) override; 138 const blink::WebSecurityOrigin& security_origin) override;
138 blink::WebFileSystem* fileSystem() override; 139 blink::WebFileSystem* fileSystem() override;
139 blink::WebString fileSystemCreateOriginIdentifier( 140 blink::WebString fileSystemCreateOriginIdentifier(
140 const blink::WebSecurityOrigin& origin) override; 141 const blink::WebSecurityOrigin& origin) override;
141 142
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 306 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
306 307
307 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_; 308 std::unique_ptr<BlinkInterfaceProviderImpl> blink_interface_provider_;
308 309
309 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 310 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
310 }; 311 };
311 312
312 } // namespace content 313 } // namespace content
313 314
314 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 315 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698