diff options
author | pauljensen@chromium.org <pauljensen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-29 17:11:55 +0000 |
---|---|---|
committer | pauljensen@chromium.org <pauljensen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-29 17:11:55 +0000 |
commit | d3eada55f844f6c5a698f48ebc4a2197885b5135 (patch) | |
tree | 844cf611b9bdeadb7164516240e6f3074acb2c9d /base | |
parent | c46c2a993a37c4f2e7b69319abbbbbc63f7ba019 (diff) | |
download | chromium_src-d3eada55f844f6c5a698f48ebc4a2197885b5135.zip chromium_src-d3eada55f844f6c5a698f48ebc4a2197885b5135.tar.gz chromium_src-d3eada55f844f6c5a698f48ebc4a2197885b5135.tar.bz2 |
Use Netlink instead of NetworkManager (via D-bus) to monitor network
connectivity on Linux.
BUG=117973
Review URL: https://chromiumcodereview.appspot.com/11359141
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@170211 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/threading/thread_restrictions.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/base/threading/thread_restrictions.h b/base/threading/thread_restrictions.h index 291c83d..248c46f 100644 --- a/base/threading/thread_restrictions.h +++ b/base/threading/thread_restrictions.h @@ -60,7 +60,9 @@ class AudioOutputController; namespace net { class FileStreamPosix; class FileStreamWin; -class NetworkManagerApi; +namespace internal { +class AddressTrackerLinux; +} } namespace remoting { @@ -198,7 +200,7 @@ class BASE_EXPORT ThreadRestrictions { friend class media::AudioOutputController; // http://crbug.com/120973 friend class net::FileStreamPosix; // http://crbug.com/115067 friend class net::FileStreamWin; // http://crbug.com/115067 - friend class net::NetworkManagerApi; // http://crbug.com/125097 + friend class net::internal::AddressTrackerLinux; // http://crbug.com/125097 friend class ::AcceleratedPresenter; // http://crbug.com/125391 friend class ::BrowserProcessImpl; // http://crbug.com/125207 friend class ::MetricsService; // http://crbug.com/124954 |