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

Unified Diff: ios/chrome/browser/application_context_impl.h

Issue 1380763003: [iOS] Integration of ChromeNetLog and NetExportUI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup whitelist Created 5 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
« no previous file with comments | « ios/chrome/browser/application_context.h ('k') | ios/chrome/browser/application_context_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/application_context_impl.h
diff --git a/ios/chrome/browser/application_context_impl.h b/ios/chrome/browser/application_context_impl.h
index dee386c00b05382cf1f7026012652f0f78cf4494..dd7e0a16b8aca90d9f980b02887371e426f9a540 100644
--- a/ios/chrome/browser/application_context_impl.h
+++ b/ios/chrome/browser/application_context_impl.h
@@ -8,12 +8,17 @@
#include <string>
#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
#include "ios/chrome/browser/application_context.h"
+namespace base {
+class CommandLine;
+}
+
class ApplicationContextImpl : public ApplicationContext {
public:
- ApplicationContextImpl();
+ ApplicationContextImpl(const base::CommandLine& command_line);
~ApplicationContextImpl() override;
// Sets the locale used by the application.
@@ -28,8 +33,10 @@ class ApplicationContextImpl : public ApplicationContext {
metrics::MetricsService* GetMetricsService() override;
policy::BrowserPolicyConnector* GetBrowserPolicyConnector() override;
rappor::RapporService* GetRapporService() override;
+ net_log::ChromeNetLog* GetNetLog() override;
base::ThreadChecker thread_checker_;
+ scoped_ptr<net_log::ChromeNetLog> net_log_;
std::string application_locale_;
DISALLOW_COPY_AND_ASSIGN(ApplicationContextImpl);
« no previous file with comments | « ios/chrome/browser/application_context.h ('k') | ios/chrome/browser/application_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698