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

Unified Diff: chrome/browser/sync/profile_sync_factory_impl.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_factory_impl.h
===================================================================
--- chrome/browser/sync/profile_sync_factory_impl.h (revision 50775)
+++ chrome/browser/sync/profile_sync_factory_impl.h (working copy)
@@ -11,17 +11,9 @@
class CommandLine;
class Profile;
-namespace chrome_common_net {
-class NetworkChangeNotifierThread;
-}
-
class ProfileSyncFactoryImpl : public ProfileSyncFactory {
public:
- ProfileSyncFactoryImpl(
- Profile* profile,
- chrome_common_net::NetworkChangeNotifierThread*
- network_change_notifier_thread,
- CommandLine* command_line);
+ ProfileSyncFactoryImpl(Profile* profile, CommandLine* command_line);
virtual ~ProfileSyncFactoryImpl() {}
// ProfileSyncFactory interface.
@@ -65,8 +57,6 @@
private:
Profile* profile_;
- chrome_common_net::NetworkChangeNotifierThread*
- network_change_notifier_thread_;
CommandLine* command_line_;
DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl);

Powered by Google App Engine
This is Rietveld 408576698