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

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

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 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 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_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <memory>
11
10 #include "base/macros.h" 12 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "build/build_config.h" 13 #include "build/build_config.h"
13 #include "content/child/blink_platform_impl.h" 14 #include "content/child/blink_platform_impl.h"
14 15
15 namespace content { 16 namespace content {
16 17
17 class PpapiBlinkPlatformImpl : public BlinkPlatformImpl { 18 class PpapiBlinkPlatformImpl : public BlinkPlatformImpl {
18 public: 19 public:
19 PpapiBlinkPlatformImpl(); 20 PpapiBlinkPlatformImpl();
20 ~PpapiBlinkPlatformImpl() override; 21 ~PpapiBlinkPlatformImpl() override;
21 22
(...skipping 27 matching lines...) Expand all
49 virtual void dispatchStorageEvent(const blink::WebString& key, 50 virtual void dispatchStorageEvent(const blink::WebString& key,
50 const blink::WebString& oldValue, const blink::WebString& newValue, 51 const blink::WebString& oldValue, const blink::WebString& newValue,
51 const blink::WebString& origin, const blink::WebURL& url, 52 const blink::WebString& origin, const blink::WebURL& url,
52 bool isLocalStorage); 53 bool isLocalStorage);
53 int databaseDeleteFile(const blink::WebString& vfs_file_name, 54 int databaseDeleteFile(const blink::WebString& vfs_file_name,
54 bool sync_dir) override; 55 bool sync_dir) override;
55 56
56 private: 57 private:
57 #if !defined(OS_ANDROID) && !defined(OS_WIN) 58 #if !defined(OS_ANDROID) && !defined(OS_WIN)
58 class SandboxSupport; 59 class SandboxSupport;
59 scoped_ptr<SandboxSupport> sandbox_support_; 60 std::unique_ptr<SandboxSupport> sandbox_support_;
60 #endif 61 #endif
61 62
62 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl); 63 DISALLOW_COPY_AND_ASSIGN(PpapiBlinkPlatformImpl);
63 }; 64 };
64 65
65 } // namespace content 66 } // namespace content
66 67
67 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_ 68 #endif // CONTENT_PPAPI_PLUGIN_PPAPI_BLINK_PLATFORM_IMPL_H_
OLDNEW
« no previous file with comments | « content/ppapi_plugin/broker_process_dispatcher.cc ('k') | content/ppapi_plugin/ppapi_plugin_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698