Index: content/utility/utility_thread_impl.cc |
=================================================================== |
--- content/utility/utility_thread_impl.cc (revision 163080) |
+++ content/utility/utility_thread_impl.cc (working copy) |
@@ -24,6 +24,8 @@ |
#include "ui/gfx/gtk_util.h" |
#endif |
+namespace content { |
+ |
namespace { |
template<typename SRC, typename DEST> |
@@ -38,9 +40,9 @@ |
UtilityThreadImpl::UtilityThreadImpl() |
: batch_mode_(false) { |
ChildProcess::current()->AddRefProcess(); |
- webkit_platform_support_.reset(new content::WebKitPlatformSupportImpl); |
+ webkit_platform_support_.reset(new WebKitPlatformSupportImpl); |
WebKit::initialize(webkit_platform_support_.get()); |
- content::GetContentClient()->utility()->UtilityThreadStarted(); |
+ GetContentClient()->utility()->UtilityThreadStarted(); |
} |
UtilityThreadImpl::~UtilityThreadImpl() { |
@@ -70,7 +72,7 @@ |
bool UtilityThreadImpl::OnControlMessageReceived(const IPC::Message& msg) { |
- if (content::GetContentClient()->utility()->OnMessageReceived(msg)) |
+ if (GetContentClient()->utility()->OnMessageReceived(msg)) |
return true; |
bool handled = true; |
@@ -128,3 +130,5 @@ |
ReleaseProcessIfNeeded(); |
} |
#endif |
+ |
+} // namespace content |