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

Unified Diff: chrome/ppapi_plugin/ppapi_plugin_main.cc

Issue 6001010: Move platform_thread to base/threading and put in the base namespace. I left ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/plugin/plugin_main.cc ('k') | chrome/profile_import/profile_import_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ppapi_plugin/ppapi_plugin_main.cc
===================================================================
--- chrome/ppapi_plugin/ppapi_plugin_main.cc (revision 70328)
+++ chrome/ppapi_plugin/ppapi_plugin_main.cc (working copy)
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "base/message_loop.h"
+#include "base/threading/platform_thread.h"
#include "build/build_config.h"
#include "chrome/common/child_process.h"
#include "chrome/common/chrome_switches.h"
@@ -17,7 +18,7 @@
}
MessageLoop main_message_loop(MessageLoop::TYPE_UI);
- PlatformThread::SetName("CrPPAPIMain");
+ base::PlatformThread::SetName("CrPPAPIMain");
ChildProcess ppapi_process;
ppapi_process.set_main_thread(new PpapiThread());
« no previous file with comments | « chrome/plugin/plugin_main.cc ('k') | chrome/profile_import/profile_import_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698