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

Unified Diff: chrome/browser/sync/profile_sync_service.h

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/profile_sync_service.h
===================================================================
--- chrome/browser/sync/profile_sync_service.h (revision 50775)
+++ chrome/browser/sync/profile_sync_service.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// 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.
@@ -31,10 +31,6 @@
class Profile;
class ProfileSyncFactory;
-namespace chrome_common_net {
-class NetworkChangeNotifierThread;
-}
-
// Various UI components such as the New Tab page can be driven by observing
// the ProfileSyncService through this interface.
class ProfileSyncServiceObserver {
@@ -129,8 +125,6 @@
ProfileSyncService(ProfileSyncFactory* factory_,
Profile* profile,
- chrome_common_net::NetworkChangeNotifierThread*
- network_change_notifier_thread,
bool bootstrap_sync_authentication);
virtual ~ProfileSyncService();
@@ -385,9 +379,6 @@
// The profile whose data we are synchronizing.
Profile* profile_;
- chrome_common_net::NetworkChangeNotifierThread*
- network_change_notifier_thread_;
-
// True if the profile sync service should attempt to use an LSID
// cookie for authentication. This is typically set to true in
// ChromiumOS since we want to use the system level authentication

Powered by Google App Engine
This is Rietveld 408576698