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

Side by Side Diff: blimp/net/blimp_message_checkpointer_unittest.cc

Issue 1968113002: Fix include path for moved thread_task_runner_handle.h header in blimp/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "blimp/net/blimp_message_checkpointer.h" 5 #include "blimp/net/blimp_message_checkpointer.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/test/test_mock_time_task_runner.h" 9 #include "base/test/test_mock_time_task_runner.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
11 #include "blimp/common/create_blimp_message.h" 11 #include "blimp/common/create_blimp_message.h"
12 #include "blimp/net/blimp_message_checkpoint_observer.h" 12 #include "blimp/net/blimp_message_checkpoint_observer.h"
13 #include "blimp/net/test_common.h" 13 #include "blimp/net/test_common.h"
14 #include "net/base/net_errors.h" 14 #include "net/base/net_errors.h"
15 #include "net/base/test_completion_callback.h" 15 #include "net/base/test_completion_callback.h"
16 #include "testing/gmock/include/gmock/gmock.h" 16 #include "testing/gmock/include/gmock/gmock.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 using testing::_; 19 using testing::_;
20 using testing::SaveArg; 20 using testing::SaveArg;
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 // Simulate an incoming message. 175 // Simulate an incoming message.
176 std::unique_ptr<BlimpMessage> ack_message = CreateCheckpointAckMessage(10); 176 std::unique_ptr<BlimpMessage> ack_message = CreateCheckpointAckMessage(10);
177 checkpointer_->ProcessMessage( 177 checkpointer_->ProcessMessage(
178 std::move(ack_message), 178 std::move(ack_message),
179 base::Bind(&BlimpMessageCheckpointerTest::IncomingCompletionCallback, 179 base::Bind(&BlimpMessageCheckpointerTest::IncomingCompletionCallback,
180 base::Unretained(this))); 180 base::Unretained(this)));
181 } 181 }
182 182
183 } // namespace blimp 183 } // namespace blimp
OLDNEW
« no previous file with comments | « blimp/engine/session/blimp_engine_session.cc ('k') | blimp/net/engine_authentication_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698