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

Side by Side Diff: mojo/services/html_viewer/webthread_impl.cc

Issue 808553007: Move HTMLViewer out of mojo namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix merge mistake in test Created 6 years 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 // An implementation of WebThread in terms of base::MessageLoop and 5 // An implementation of WebThread in terms of base::MessageLoop and
6 // base::Thread 6 // base::Thread
7 7
8 #include "mojo/services/html_viewer/webthread_impl.h" 8 #include "mojo/services/html_viewer/webthread_impl.h"
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/bind_helpers.h" 11 #include "base/bind_helpers.h"
12 #include "base/message_loop/message_loop.h" 12 #include "base/message_loop/message_loop.h"
13 #include "base/pending_task.h" 13 #include "base/pending_task.h"
14 #include "base/threading/platform_thread.h" 14 #include "base/threading/platform_thread.h"
15 15
16 namespace mojo { 16 namespace html_viewer {
17 17
18 WebThreadBase::WebThreadBase() {} 18 WebThreadBase::WebThreadBase() {}
19 WebThreadBase::~WebThreadBase() {} 19 WebThreadBase::~WebThreadBase() {}
20 20
21 class WebThreadBase::TaskObserverAdapter 21 class WebThreadBase::TaskObserverAdapter
22 : public base::MessageLoop::TaskObserver { 22 : public base::MessageLoop::TaskObserver {
23 public: 23 public:
24 TaskObserverAdapter(WebThread::TaskObserver* observer) 24 TaskObserverAdapter(WebThread::TaskObserver* observer)
25 : observer_(observer) {} 25 : observer_(observer) {}
26 26
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 bool WebThreadImplForMessageLoop::isCurrentThread() const { 129 bool WebThreadImplForMessageLoop::isCurrentThread() const {
130 return message_loop_->BelongsToCurrentThread(); 130 return message_loop_->BelongsToCurrentThread();
131 } 131 }
132 132
133 blink::PlatformThreadId WebThreadImplForMessageLoop::threadId() const { 133 blink::PlatformThreadId WebThreadImplForMessageLoop::threadId() const {
134 return thread_id_; 134 return thread_id_;
135 } 135 }
136 136
137 WebThreadImplForMessageLoop::~WebThreadImplForMessageLoop() {} 137 WebThreadImplForMessageLoop::~WebThreadImplForMessageLoop() {}
138 138
139 } // namespace mojo 139 } // namespace html_viewer
OLDNEW
« no previous file with comments | « mojo/services/html_viewer/webthread_impl.h ('k') | mojo/services/html_viewer/weburlloader_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698