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

Unified Diff: content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc

Issue 11231016: Move content's a plugin, ppapi_plugin, utility, and worker subdirectories to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 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
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h ('k') | content/utility/utility_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc
===================================================================
--- content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc (revision 163080)
+++ content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc (working copy)
@@ -34,6 +34,8 @@
typedef struct CGFont* CGFontRef;
+namespace content {
+
class PpapiWebKitPlatformSupportImpl::SandboxSupport : public WebSandboxSupport {
public:
virtual ~SandboxSupport() {}
@@ -122,7 +124,7 @@
return;
}
- content::GetFontFamilyForCharacters(
+ GetFontFamilyForCharacters(
characters,
num_characters,
preferred_locale,
@@ -132,7 +134,7 @@
void PpapiWebKitPlatformSupportImpl::SandboxSupport::getRenderStyleForStrike(
const char* family, int sizeAndStyle, WebKit::WebFontRenderStyle* out) {
- content::GetRenderStyleForStrike(family, sizeAndStyle, out);
+ GetRenderStyleForStrike(family, sizeAndStyle, out);
}
#endif
@@ -259,3 +261,5 @@
NOTREACHED();
return 0;
}
+
+} // namespace content
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h ('k') | content/utility/utility_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698