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

Side by Side Diff: components/invalidation/impl/gcm_invalidation_bridge_unittest.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/invalidation/impl/gcm_invalidation_bridge.h" 5 #include "components/invalidation/impl/gcm_invalidation_bridge.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/message_loop/message_loop.h"
12 #include "base/run_loop.h" 13 #include "base/run_loop.h"
13 #include "base/single_thread_task_runner.h" 14 #include "base/single_thread_task_runner.h"
14 #include "base/threading/thread_task_runner_handle.h" 15 #include "base/threading/thread_task_runner_handle.h"
15 #include "components/gcm_driver/fake_gcm_driver.h" 16 #include "components/gcm_driver/fake_gcm_driver.h"
16 #include "components/gcm_driver/gcm_driver.h" 17 #include "components/gcm_driver/gcm_driver.h"
17 #include "components/signin/core/browser/fake_profile_oauth2_token_service.h" 18 #include "components/signin/core/browser/fake_profile_oauth2_token_service.h"
18 #include "google_apis/gaia/fake_identity_provider.h" 19 #include "google_apis/gaia/fake_identity_provider.h"
19 #include "google_apis/gaia/google_service_auth_error.h" 20 #include "google_apis/gaia/google_service_auth_error.h"
20 #include "net/base/ip_endpoint.h" 21 #include "net/base/ip_endpoint.h"
21 #include "testing/gtest/include/gtest/gtest.h" 22 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 bridge_->OnConnected(net::IPEndPoint()); 153 bridge_->OnConnected(net::IPEndPoint());
153 RunLoop(); 154 RunLoop();
154 EXPECT_TRUE(connection_online_); 155 EXPECT_TRUE(connection_online_);
155 bridge_->OnDisconnected(); 156 bridge_->OnDisconnected();
156 RunLoop(); 157 RunLoop();
157 EXPECT_FALSE(connection_online_); 158 EXPECT_FALSE(connection_online_);
158 } 159 }
159 160
160 } // namespace 161 } // namespace
161 } // namespace invalidation 162 } // namespace invalidation
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698