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

Unified Diff: content/browser/renderer_host/render_view_host_notification_task.h

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 2 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
Index: content/browser/renderer_host/render_view_host_notification_task.h
diff --git a/content/browser/renderer_host/render_view_host_notification_task.h b/content/browser/renderer_host/render_view_host_notification_task.h
index c14f476af7d51dae1971450015e3a3e0279684d9..2629353310cc4be08b99455e3f328f3c125d5a04 100644
--- a/content/browser/renderer_host/render_view_host_notification_task.h
+++ b/content/browser/renderer_host/render_view_host_notification_task.h
@@ -62,6 +62,7 @@ class RenderViewHostNotificationTask : public Task {
template <typename Method, typename Params>
inline void CallRenderViewHostHelper(int render_process_id, int render_view_id,
Method method, const Params& params) {
+ using content::BrowserThread;
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
new RenderViewHostNotificationTask<Method, Params>(render_process_id,
@@ -86,6 +87,7 @@ inline void CallRenderViewHostRendererManagementDelegateHelper(
int render_view_id,
Method method,
const Params& params) {
+ using content::BrowserThread;
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
new RenderViewHostNotificationTask<
« no previous file with comments | « content/browser/renderer_host/render_view_host.cc ('k') | content/browser/renderer_host/render_widget_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698