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

Unified Diff: content/public/renderer/content_renderer_client.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 side-by-side diff with in-line comments
Download patch
Index: content/public/renderer/content_renderer_client.h
diff --git a/content/public/renderer/content_renderer_client.h b/content/public/renderer/content_renderer_client.h
index 0fab0377ad0bbee84abefc8ce1aea4f1c576ed08..aa1957b4736fcfd79942c814b3ad0f0ff4936a16 100644
--- a/content/public/renderer/content_renderer_client.h
+++ b/content/public/renderer/content_renderer_client.h
@@ -8,12 +8,12 @@
#include <stddef.h>
#include <map>
+#include <memory>
#include <string>
#include <vector>
#include "base/bind.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "base/strings/string16.h"
#include "build/build_config.h"
#include "content/public/common/content_client.h"
@@ -257,13 +257,13 @@ class CONTENT_EXPORT ContentRendererClient {
virtual bool AllowPepperMediaStreamAPI(const GURL& url);
// Allows an embedder to provide a media::RendererFactory.
- virtual scoped_ptr<media::RendererFactory> CreateMediaRendererFactory(
+ virtual std::unique_ptr<media::RendererFactory> CreateMediaRendererFactory(
RenderFrame* render_frame,
media::GpuVideoAcceleratorFactories* gpu_factories,
const scoped_refptr<media::MediaLog>& media_log);
// Allows an embedder to provide a MediaStreamRendererFactory.
- virtual scoped_ptr<MediaStreamRendererFactory>
+ virtual std::unique_ptr<MediaStreamRendererFactory>
CreateMediaStreamRendererFactory();
// Allows an embedder to provde a cc::ImageSerializationProcessor.
@@ -309,7 +309,7 @@ class CONTENT_EXPORT ContentRendererClient {
virtual void RecordRapporURL(const std::string& metric, const GURL& url) {}
// Allows an embedder to provide a blink::WebAppBannerClient.
- virtual scoped_ptr<blink::WebAppBannerClient> CreateAppBannerClient(
+ virtual std::unique_ptr<blink::WebAppBannerClient> CreateAppBannerClient(
RenderFrame* render_frame);
// Gives the embedder a chance to add properties to the context menu.
« no previous file with comments | « content/public/gpu/gpu_video_decode_accelerator_factory.cc ('k') | content/public/renderer/content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698