| Index: components/gcm_driver/gcm_channel_status_request_unittest.cc
|
| diff --git a/components/gcm_driver/gcm_channel_status_request_unittest.cc b/components/gcm_driver/gcm_channel_status_request_unittest.cc
|
| index 8fd732fe816c32b98d1d40cfa59eaa7f50aac93a..4bb3c69fb8d007693f6a3d37d77b95a85696a26d 100644
|
| --- a/components/gcm_driver/gcm_channel_status_request_unittest.cc
|
| +++ b/components/gcm_driver/gcm_channel_status_request_unittest.cc
|
| @@ -2,7 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/message_loop/message_loop.h"
|
| #include "components/gcm_driver/gcm_channel_status_request.h"
|
| #include "net/url_request/test_url_fetcher_factory.h"
|
| #include "net/url_request/url_request_test_util.h"
|
| @@ -44,8 +43,8 @@ class GCMChannelStatusRequestTest : public testing::Test {
|
| };
|
|
|
| GCMChannelStatusRequestTest::GCMChannelStatusRequestTest()
|
| - : url_request_context_getter_(new net::TestURLRequestContextGetter(
|
| - message_loop_.message_loop_proxy())),
|
| + : url_request_context_getter_(
|
| + new net::TestURLRequestContextGetter(message_loop_.task_runner())),
|
| request_callback_invoked_(false),
|
| update_received_(false),
|
| enabled_(true),
|
|
|