OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chromecast/shell/browser/cast_browser_context.h" | 5 #include "chromecast/shell/browser/cast_browser_context.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/files/file_util.h" | |
lcwu1
2014/09/25 18:53:18
Now that you added file_util.h, you might as well
gunsch
2014/09/25 19:24:59
Not referenced directly in this file.
lcwu1
2014/09/25 20:07:04
Line 78 and 107 has a direct reference to base::Fi
gunsch
2014/09/25 20:46:34
Discussed offline, part of BrowserContext's public
| |
8 #include "base/macros.h" | 9 #include "base/macros.h" |
9 #include "base/path_service.h" | 10 #include "base/path_service.h" |
10 #include "chromecast/common/cast_paths.h" | 11 #include "chromecast/common/cast_paths.h" |
11 #include "chromecast/shell/browser/url_request_context_factory.h" | 12 #include "chromecast/shell/browser/url_request_context_factory.h" |
12 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
13 #include "content/public/browser/resource_context.h" | 14 #include "content/public/browser/resource_context.h" |
14 #include "content/public/browser/storage_partition.h" | 15 #include "content/public/browser/storage_partition.h" |
15 #include "content/public/common/content_switches.h" | 16 #include "content/public/common/content_switches.h" |
16 #include "net/url_request/url_request_context.h" | 17 #include "net/url_request/url_request_context.h" |
17 #include "net/url_request/url_request_context_getter.h" | 18 #include "net/url_request/url_request_context_getter.h" |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 return NULL; | 133 return NULL; |
133 } | 134 } |
134 | 135 |
135 content::SSLHostStateDelegate* CastBrowserContext::GetSSLHostStateDelegate() { | 136 content::SSLHostStateDelegate* CastBrowserContext::GetSSLHostStateDelegate() { |
136 NOTIMPLEMENTED(); | 137 NOTIMPLEMENTED(); |
137 return NULL; | 138 return NULL; |
138 } | 139 } |
139 | 140 |
140 } // namespace shell | 141 } // namespace shell |
141 } // namespace chromecast | 142 } // namespace chromecast |
OLD | NEW |