| Index: content/ppapi_plugin/ppapi_webkitclient_impl.cc
|
| diff --git a/content/ppapi_plugin/ppapi_webkitclient_impl.cc b/content/ppapi_plugin/ppapi_webkitclient_impl.cc
|
| index 1abbe94111012d334bf2e995c5ccb2659f5461d5..7908e0c394db4f2bded350508581265a60203d6f 100644
|
| --- a/content/ppapi_plugin/ppapi_webkitclient_impl.cc
|
| +++ b/content/ppapi_plugin/ppapi_webkitclient_impl.cc
|
| @@ -17,7 +17,7 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/win/WebSandboxSupport.h"
|
| #elif defined(OS_MACOSX)
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/mac/WebSandboxSupport.h"
|
| -#elif defined(OS_LINUX)
|
| +#elif defined(OS_POSIX)
|
| #include "content/common/child_process_sandbox_support_linux.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/linux/WebSandboxSupport.h"
|
| #endif
|
| @@ -32,7 +32,7 @@ class PpapiWebKitClientImpl::SandboxSupport : public WebSandboxSupport {
|
| virtual bool ensureFontLoaded(HFONT);
|
| #elif defined(OS_MACOSX)
|
| virtual bool loadFont(NSFont* srcFont, ATSFontContainerRef* out);
|
| -#elif defined(OS_LINUX)
|
| +#elif defined(OS_POSIX)
|
| virtual WebString getFontFamilyForCharacters(
|
| const WebUChar* characters,
|
| size_t numCharacters,
|
| @@ -69,7 +69,7 @@ bool PpapiWebKitClientImpl::SandboxSupport::loadFont(NSFont* srcFont,
|
| return false;
|
| }
|
|
|
| -#elif defined(OS_LINUX)
|
| +#elif defined(OS_POSIX)
|
|
|
| WebString PpapiWebKitClientImpl::SandboxSupport::getFontFamilyForCharacters(
|
| const WebUChar* characters,
|
|
|