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

Unified Diff: chrome/browser/sync/net/network_change_notifier_io_thread.cc

Issue 2802015: Massively simplify the NetworkChangeNotifier infrastructure:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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
Index: chrome/browser/sync/net/network_change_notifier_io_thread.cc
===================================================================
--- chrome/browser/sync/net/network_change_notifier_io_thread.cc (revision 50775)
+++ chrome/browser/sync/net/network_change_notifier_io_thread.cc (working copy)
@@ -1,24 +0,0 @@
-// Copyright (c) 2010 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/sync/net/network_change_notifier_io_thread.h"
-
-#include "base/logging.h"
-#include "chrome/browser/io_thread.h"
-
-NetworkChangeNotifierIOThread::NetworkChangeNotifierIOThread(
- IOThread* io_thread) : io_thread_(io_thread) {
- DCHECK(io_thread_);
-}
-
-NetworkChangeNotifierIOThread::~NetworkChangeNotifierIOThread() {}
-
-MessageLoop* NetworkChangeNotifierIOThread::GetMessageLoop() const {
- return io_thread_->message_loop();
-}
-
-net::NetworkChangeNotifier*
-NetworkChangeNotifierIOThread::GetNetworkChangeNotifier() const {
- return io_thread_->globals()->network_change_notifier.get();
-}

Powered by Google App Engine
This is Rietveld 408576698