Chromium Code Reviews| Index: chrome/browser/chrome_content_browser_client.h |
| diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h |
| index 9166286be8386012bbf038351a2ec952916d2da3..d97f7d93020560b04da8031568c210589ff45299 100644 |
| --- a/chrome/browser/chrome_content_browser_client.h |
| +++ b/chrome/browser/chrome_content_browser_client.h |
| @@ -12,6 +12,7 @@ |
| #include "base/compiler_specific.h" |
| #include "base/gtest_prod_util.h" |
| +#include "base/memory/ref_counted.h" |
| #include "base/memory/scoped_ptr.h" |
| #include "base/memory/weak_ptr.h" |
| #include "chrome/common/chrome_version_info.h" |
| @@ -23,6 +24,10 @@ namespace base { |
| class CommandLine; |
| } |
| +namespace chrome_browser_net { |
| +class CertificateErrorReporter; |
| +} |
| + |
| namespace content { |
| class QuotaPermissionContext; |
| } |
| @@ -333,6 +338,9 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient { |
| // Parts are deleted in the reverse order they are added. |
| std::vector<ChromeContentBrowserClientParts*> extra_parts_; |
| + scoped_refptr<chrome_browser_net::CertificateErrorReporter> |
| + certificate_error_reporter_; |
|
Ryan Sleevi
2015/03/14 03:09:42
+1 to felt that we shouldn't be sticking this here
|
| + |
| base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; |
| DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); |