blob: 97dc70e6e3762207068138c5f6b8927bbcb66c87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2011 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 CHROME_BROWSER_NET_PREF_PROXY_CONFIG_TRACKER_H_
#define CHROME_BROWSER_NET_PREF_PROXY_CONFIG_TRACKER_H_
#include "chrome/browser/net/pref_proxy_config_tracker_impl.h"
#if defined(OS_CHROMEOS)
namespace chromeos {
class ProxyConfigServiceImpl;
}
#endif // defined(OS_CHROMEOS)
#if defined(OS_CHROMEOS)
typedef chromeos::ProxyConfigServiceImpl PrefProxyConfigTracker;
#else
typedef PrefProxyConfigTrackerImpl PrefProxyConfigTracker;
#endif // defined(OS_CHROMEOS)
#endif // CHROME_BROWSER_NET_PREF_PROXY_CONFIG_TRACKER_H_
|