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

Unified Diff: content/shell/browser/shell_url_request_context_getter.h

Issue 631203003: Fix bug: AppShell: CHECK failure in PeerConnection init. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/shell_url_request_context_getter.h
diff --git a/content/shell/browser/shell_url_request_context_getter.h b/content/shell/browser/shell_url_request_context_getter.h
index 810e602dfea77e6350da0efc612158760ca5df2a..d3bcf2968442b5f1df9ba914eee1e7a158309310 100644
--- a/content/shell/browser/shell_url_request_context_getter.h
+++ b/content/shell/browser/shell_url_request_context_getter.h
@@ -17,6 +17,10 @@ namespace base {
class MessageLoop;
}
+namespace extensions {
James Cook 2014/10/07 16:24:54 Delete this. It's not needed, and you can't refer
Xi Han 2014/10/07 19:29:53 Oops, thanks for catching it! Removed. On 2014/10
+class InfoMap;
+}
+
namespace net {
class HostResolver;
class MappedHostResolver;
@@ -40,9 +44,11 @@ class ShellURLRequestContextGetter : public net::URLRequestContextGetter {
net::NetLog* net_log);
// net::URLRequestContextGetter implementation.
- virtual net::URLRequestContext* GetURLRequestContext() override;
+ virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE;
James Cook 2014/10/07 16:24:54 We're transitioning to C++11, this should be lower
Xi Han 2014/10/07 19:29:53 Updated. On 2014/10/07 16:24:54, James Cook wrote
virtual scoped_refptr<base::SingleThreadTaskRunner>
- GetNetworkTaskRunner() const override;
+ GetNetworkTaskRunner() const OVERRIDE;
+
+ virtual net::NetworkDelegate* CreateNetworkDelegate();
James Cook 2014/10/07 16:24:54 brief comment please
Xi Han 2014/10/07 19:29:53 Done.
net::HostResolver* host_resolver();

Powered by Google App Engine
This is Rietveld 408576698