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

Side by Side Diff: content/renderer/render_thread_impl.h

Issue 1142063003: content/child: Remove use of MessageLoopProxy and deprecated MessageLoop APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fix. Created 5 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 // Notify V8 that the date/time configuration of the system might have 148 // Notify V8 that the date/time configuration of the system might have
149 // changed. 149 // changed.
150 static void NotifyTimezoneChange(); 150 static void NotifyTimezoneChange();
151 151
152 // RenderThread implementation: 152 // RenderThread implementation:
153 bool Send(IPC::Message* msg) override; 153 bool Send(IPC::Message* msg) override;
154 scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() override; 154 scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() override;
155 IPC::SyncChannel* GetChannel() override; 155 IPC::SyncChannel* GetChannel() override;
156 std::string GetLocale() override; 156 std::string GetLocale() override;
157 IPC::SyncMessageFilter* GetSyncMessageFilter() override; 157 IPC::SyncMessageFilter* GetSyncMessageFilter() override;
158 scoped_refptr<base::MessageLoopProxy> GetIOMessageLoopProxy() override; 158 scoped_refptr<base::SingleThreadTaskRunner> GetIOMessageLoopProxy() override;
159 void AddRoute(int32 routing_id, IPC::Listener* listener) override; 159 void AddRoute(int32 routing_id, IPC::Listener* listener) override;
160 void RemoveRoute(int32 routing_id) override; 160 void RemoveRoute(int32 routing_id) override;
161 int GenerateRoutingID() override; 161 int GenerateRoutingID() override;
162 void AddFilter(IPC::MessageFilter* filter) override; 162 void AddFilter(IPC::MessageFilter* filter) override;
163 void RemoveFilter(IPC::MessageFilter* filter) override; 163 void RemoveFilter(IPC::MessageFilter* filter) override;
164 void AddObserver(RenderProcessObserver* observer) override; 164 void AddObserver(RenderProcessObserver* observer) override;
165 void RemoveObserver(RenderProcessObserver* observer) override; 165 void RemoveObserver(RenderProcessObserver* observer) override;
166 void SetResourceDispatcherDelegate( 166 void SetResourceDispatcherDelegate(
167 ResourceDispatcherDelegate* delegate) override; 167 ResourceDispatcherDelegate* delegate) override;
168 void EnsureWebKitInitialized() override; 168 void EnsureWebKitInitialized() override;
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); 646 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl);
647 }; 647 };
648 648
649 #if defined(COMPILER_MSVC) 649 #if defined(COMPILER_MSVC)
650 #pragma warning(pop) 650 #pragma warning(pop)
651 #endif 651 #endif
652 652
653 } // namespace content 653 } // namespace content
654 654
655 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ 655 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_proxy_channel_delegate_impl.cc ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698