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

Unified Diff: content/ppapi_plugin/ppapi_blink_platform_impl.h

Issue 2846843002: [blink] Unique pointers in Platform.h (Closed)
Patch Set: fix compilation (and again) Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | content/ppapi_plugin/ppapi_blink_platform_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/ppapi_plugin/ppapi_blink_platform_impl.h
diff --git a/content/ppapi_plugin/ppapi_blink_platform_impl.h b/content/ppapi_plugin/ppapi_blink_platform_impl.h
index 097b5ebd06a0de5bc83e5abcaba86a7591aef254..84d29a5ae84a438342c985016e082b0e4896d623 100644
--- a/content/ppapi_plugin/ppapi_blink_platform_impl.h
+++ b/content/ppapi_plugin/ppapi_blink_platform_impl.h
@@ -48,7 +48,8 @@ class PpapiBlinkPlatformImpl : public BlinkPlatformImpl {
const blink::WebSecurityOrigin& mainFrameOrigin,
blink::WebPluginListBuilder*) override;
blink::WebData LoadResource(const char* name) override;
- blink::WebStorageNamespace* CreateLocalStorageNamespace() override;
+ std::unique_ptr<blink::WebStorageNamespace> CreateLocalStorageNamespace()
+ override;
virtual void dispatchStorageEvent(const blink::WebString& key,
const blink::WebString& oldValue, const blink::WebString& newValue,
const blink::WebString& origin, const blink::WebURL& url,
« no previous file with comments | « content/child/blink_platform_impl.cc ('k') | content/ppapi_plugin/ppapi_blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698