Chromium Code Reviews

Unified Diff: content/ppapi_plugin/ppapi_blink_platform_impl.cc

Issue 2859553002: Revert of [blink] Unique pointers in Platform.h (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.h ('k') | content/public/renderer/content_renderer_client.h » ('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.cc
diff --git a/content/ppapi_plugin/ppapi_blink_platform_impl.cc b/content/ppapi_plugin/ppapi_blink_platform_impl.cc
index e9b89307ad89e17d03a7ced6ec2ab7bbeb030504..b13765a4948e29ac0c2a3cb287f644646855ced6 100644
--- a/content/ppapi_plugin/ppapi_blink_platform_impl.cc
+++ b/content/ppapi_plugin/ppapi_blink_platform_impl.cc
@@ -16,7 +16,6 @@
#include "content/common/child_process_messages.h"
#include "ppapi/proxy/plugin_globals.h"
#include "ppapi/shared_impl/proxy_lock.h"
-#include "third_party/WebKit/public/platform/WebStorageNamespace.h"
#include "third_party/WebKit/public/platform/WebString.h"
#if defined(OS_MACOSX)
@@ -223,10 +222,10 @@
return blink::WebData();
}
-std::unique_ptr<blink::WebStorageNamespace>
+blink::WebStorageNamespace*
PpapiBlinkPlatformImpl::CreateLocalStorageNamespace() {
NOTREACHED();
- return nullptr;
+ return 0;
}
void PpapiBlinkPlatformImpl::dispatchStorageEvent(
« no previous file with comments | « content/ppapi_plugin/ppapi_blink_platform_impl.h ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine