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: content/child/worker_task_runner_unittest.cc

Issue 165373004: Move WorkerTaskRunner to content/child. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « content/child/worker_task_runner.cc ('k') | content/child/worker_thread_task_runner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/child/worker_task_runner.h"
6
5 #include "base/logging.h" 7 #include "base/logging.h"
6 #include "testing/gmock/include/gmock/gmock.h" 8 #include "testing/gmock/include/gmock/gmock.h"
7 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
8 #include "webkit/child/worker_task_runner.h"
9 10
10 namespace webkit_glue { 11 namespace content {
11 12
12 class WorkerTaskRunnerTest : public testing::Test { 13 class WorkerTaskRunnerTest : public testing::Test {
13 public: 14 public:
14 void FakeStart() { 15 void FakeStart() {
15 task_runner_.OnWorkerRunLoopStarted(blink::WebWorkerRunLoop()); 16 task_runner_.OnWorkerRunLoopStarted(blink::WebWorkerRunLoop());
16 } 17 }
17 void FakeStop() { 18 void FakeStop() {
18 task_runner_.OnWorkerRunLoopStopped(blink::WebWorkerRunLoop()); 19 task_runner_.OnWorkerRunLoopStopped(blink::WebWorkerRunLoop());
19 } 20 }
20 WorkerTaskRunner task_runner_; 21 WorkerTaskRunner task_runner_;
(...skipping 25 matching lines...) Expand all
46 TEST_F(WorkerTaskRunnerTest, CanRemoveSelfDuringNotification) { 47 TEST_F(WorkerTaskRunnerTest, CanRemoveSelfDuringNotification) {
47 MockObserver o; 48 MockObserver o;
48 o.RemoveSelfOnNotify(); 49 o.RemoveSelfOnNotify();
49 o.runner_ = &task_runner_; 50 o.runner_ = &task_runner_;
50 EXPECT_CALL(o, OnWorkerRunLoopStopped()).Times(1); 51 EXPECT_CALL(o, OnWorkerRunLoopStopped()).Times(1);
51 FakeStart(); 52 FakeStart();
52 task_runner_.AddStopObserver(&o); 53 task_runner_.AddStopObserver(&o);
53 FakeStop(); 54 FakeStop();
54 } 55 }
55 56
56 } 57 } // namespace content
OLDNEW
« no previous file with comments | « content/child/worker_task_runner.cc ('k') | content/child/worker_thread_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698