summaryrefslogtreecommitdiffstats
path: root/chrome/browser/google/chrome_google_url_tracker_client.cc
blob: 60b1e7b1b4ed691c207d9a8f8bd56d4fbb197616 (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
// 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.

#include "chrome/browser/google/chrome_google_url_tracker_client.h"

#include "base/command_line.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/chrome_switches.h"

ChromeGoogleURLTrackerClient::ChromeGoogleURLTrackerClient(Profile* profile)
    : profile_(profile) {
}

ChromeGoogleURLTrackerClient::~ChromeGoogleURLTrackerClient() {
}

bool ChromeGoogleURLTrackerClient::IsBackgroundNetworkingEnabled() {
  return !base::CommandLine::ForCurrentProcess()->HasSwitch(
      switches::kDisableBackgroundNetworking);
}

PrefService* ChromeGoogleURLTrackerClient::GetPrefs() {
  return profile_->GetPrefs();
}

net::URLRequestContextGetter*
ChromeGoogleURLTrackerClient::GetRequestContext() {
  return profile_->GetRequestContext();
}