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

Unified Diff: blimp/client/core/blimp_client_context_impl_unittest.cc

Issue 2211613002: Add AssignmentSource to BlimpClientContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge origin/master Created 4 years, 4 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
« no previous file with comments | « blimp/client/core/blimp_client_context_impl.cc ('k') | blimp/client/core/dummy_blimp_client_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/blimp_client_context_impl_unittest.cc
diff --git a/blimp/client/core/blimp_client_context_impl_unittest.cc b/blimp/client/core/blimp_client_context_impl_unittest.cc
index 57c768ffd15b8b59b0102803d6acdf70893a4be6..55acec3a6e0fbd61559066e6974bb106c7a12ce8 100644
--- a/blimp/client/core/blimp_client_context_impl_unittest.cc
+++ b/blimp/client/core/blimp_client_context_impl_unittest.cc
@@ -35,18 +35,17 @@ class BlimpClientContextImplTest : public testing::Test {
}
protected:
- // The thread to use for IO related tasks.
base::Thread io_thread_;
private:
- // Message loop for the test thread.
base::MessageLoop message_loop_;
DISALLOW_COPY_AND_ASSIGN(BlimpClientContextImplTest);
};
TEST_F(BlimpClientContextImplTest, CreatedBlimpContentsGetsHelpersAttached) {
- BlimpClientContextImpl blimp_client_context(io_thread_.task_runner());
+ BlimpClientContextImpl blimp_client_context(io_thread_.task_runner(),
+ io_thread_.task_runner());
TestBlimpClientContextDelegate delegate;
blimp_client_context.SetDelegate(&delegate);
« no previous file with comments | « blimp/client/core/blimp_client_context_impl.cc ('k') | blimp/client/core/dummy_blimp_client_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698