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

Unified Diff: extensions/shell/browser/shell_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
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | extensions/shell/browser/shell_url_request_context_getter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/shell/browser/shell_url_request_context_getter.h
diff --git a/extensions/shell/browser/shell_url_request_context_getter.h b/extensions/shell/browser/shell_url_request_context_getter.h
index ca678eadf7ba6a39e3737787c3a24e3709aaadf6..cefef3f3a2ca612eed0b196c2114f2a01c41f7d5 100644
--- a/extensions/shell/browser/shell_url_request_context_getter.h
+++ b/extensions/shell/browser/shell_url_request_context_getter.h
@@ -26,8 +26,8 @@ namespace extensions {
class InfoMap;
-class ShellURLRequestContextGetter :
- public content::ShellURLRequestContextGetter {
+class ShellURLRequestContextGetter
+ : public content::ShellURLRequestContextGetter {
public:
ShellURLRequestContextGetter(
content::BrowserContext* browser_context,
@@ -41,16 +41,16 @@ class ShellURLRequestContextGetter :
InfoMap* extension_info_map);
// content::ShellURLRequestContextGetter implementation.
- scoped_ptr<net::NetworkDelegate> CreateNetworkDelegate() override;
+ std::unique_ptr<net::NetworkDelegate> CreateNetworkDelegate() override;
-protected:
- ~ShellURLRequestContextGetter() override;
+ protected:
+ ~ShellURLRequestContextGetter() override;
-private:
+ private:
content::BrowserContext* browser_context_;
InfoMap* extension_info_map_;
-private:
+ private:
DISALLOW_COPY_AND_ASSIGN(ShellURLRequestContextGetter);
};
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | extensions/shell/browser/shell_url_request_context_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698