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

Unified Diff: content/shell/browser/layout_test/layout_test_url_request_context_getter.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/shell/browser/layout_test/layout_test_url_request_context_getter.h
diff --git a/content/shell/browser/layout_test/layout_test_url_request_context_getter.h b/content/shell/browser/layout_test/layout_test_url_request_context_getter.h
index 0f5572c99206c0058b53f7b8b01dd3ac9cdbe255..41cdae20821f954b03a4bc67fd9d4f177d2ac2f6 100644
--- a/content/shell/browser/layout_test/layout_test_url_request_context_getter.h
+++ b/content/shell/browser/layout_test/layout_test_url_request_context_getter.h
@@ -5,11 +5,12 @@
#ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_URL_REQUEST_CONTEXT_GETTER_H_
#define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_URL_REQUEST_CONTEXT_GETTER_H_
+#include <memory>
+
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "content/public/browser/content_browser_client.h"
#include "content/shell/browser/shell_url_request_context_getter.h"
#include "net/url_request/url_request_job_factory.h"
@@ -44,9 +45,9 @@ class LayoutTestURLRequestContextGetter : public ShellURLRequestContextGetter {
~LayoutTestURLRequestContextGetter() override;
// ShellURLRequestContextGetter implementation.
- scoped_ptr<net::NetworkDelegate> CreateNetworkDelegate() override;
- scoped_ptr<net::ProxyConfigService> GetProxyConfigService() override;
- scoped_ptr<net::ProxyService> GetProxyService() override;
+ std::unique_ptr<net::NetworkDelegate> CreateNetworkDelegate() override;
+ std::unique_ptr<net::ProxyConfigService> GetProxyConfigService() override;
+ std::unique_ptr<net::ProxyService> GetProxyService() override;
private:
DISALLOW_COPY_AND_ASSIGN(LayoutTestURLRequestContextGetter);

Powered by Google App Engine
This is Rietveld 408576698