| Index: components/sync/tools/sync_listen_notifications.cc
|
| diff --git a/components/sync/tools/sync_listen_notifications.cc b/components/sync/tools/sync_listen_notifications.cc
|
| index 25ec99610ecf537d57689d9a7d6720c26f05e0c6..df6856129c6763d1060a4d49227bc3d08d15e003 100644
|
| --- a/components/sync/tools/sync_listen_notifications.cc
|
| +++ b/components/sync/tools/sync_listen_notifications.cc
|
| @@ -165,7 +165,7 @@ int SyncListenNotificationsMain(int argc, char* argv[]) {
|
| "Usage: %s --%s=foo@bar.com --%s=token\n"
|
| "[--%s=host:port] [--%s] [--%s]\n"
|
| "Run chrome and set a breakpoint on\n"
|
| - "syncer::SyncManagerImpl::UpdateCredentials() "
|
| + "SyncManagerImpl::UpdateCredentials() "
|
| "after logging into\n"
|
| "sync to get the token to pass into this utility.\n",
|
| argv[0], kEmailSwitch, kTokenSwitch, kHostPortSwitch,
|
| @@ -179,9 +179,8 @@ int SyncListenNotificationsMain(int argc, char* argv[]) {
|
|
|
| const notifier::NotifierOptions& notifier_options = ParseNotifierOptions(
|
| command_line, new MyTestURLRequestContextGetter(io_thread.task_runner()));
|
| - syncer::NetworkChannelCreator network_channel_creator =
|
| - syncer::NonBlockingInvalidator::MakePushClientChannelCreator(
|
| - notifier_options);
|
| + NetworkChannelCreator network_channel_creator =
|
| + NonBlockingInvalidator::MakePushClientChannelCreator(notifier_options);
|
| const char kClientInfo[] = "sync_listen_notifications";
|
| NullInvalidationStateTracker null_invalidation_state_tracker;
|
| std::unique_ptr<Invalidator> invalidator(new NonBlockingInvalidator(
|
|
|