summaryrefslogtreecommitdiffstats
path: root/ios/chrome/browser/application_context_impl.h
blob: dee386c00b05382cf1f7026012652f0f78cf4494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_
#define IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_

#include <string>

#include "base/macros.h"
#include "base/threading/thread_checker.h"
#include "ios/chrome/browser/application_context.h"

class ApplicationContextImpl : public ApplicationContext {
 public:
  ApplicationContextImpl();
  ~ApplicationContextImpl() override;

  // Sets the locale used by the application.
  void SetApplicationLocale(const std::string& locale);

 private:
  // ApplicationContext implementation.
  PrefService* GetLocalState() override;
  net::URLRequestContextGetter* GetSystemURLRequestContext() override;
  const std::string& GetApplicationLocale() override;
  ios::ChromeBrowserStateManager* GetChromeBrowserStateManager() override;
  metrics::MetricsService* GetMetricsService() override;
  policy::BrowserPolicyConnector* GetBrowserPolicyConnector() override;
  rappor::RapporService* GetRapporService() override;

  base::ThreadChecker thread_checker_;
  std::string application_locale_;

  DISALLOW_COPY_AND_ASSIGN(ApplicationContextImpl);
};

#endif  // IOS_CHROME_BROWSER_APPLICATION_CONTEXT_IMPL_H_