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

Unified Diff: content/browser/renderer_host/render_sandbox_host_linux.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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_sandbox_host_linux.cc
diff --git a/content/browser/renderer_host/render_sandbox_host_linux.cc b/content/browser/renderer_host/render_sandbox_host_linux.cc
index 8153718153217c066fffd8f22f4b527c50c5535a..986bff904def7f7cfb121363622dca5b8c2adbfa 100644
--- a/content/browser/renderer_host/render_sandbox_host_linux.cc
+++ b/content/browser/renderer_host/render_sandbox_host_linux.cc
@@ -39,10 +39,10 @@
#include "third_party/skia/include/ports/SkFontConfigInterface.h"
#include "ui/gfx/font_render_params_linux.h"
-using WebKit::WebCString;
-using WebKit::WebFontInfo;
-using WebKit::WebUChar;
-using WebKit::WebUChar32;
+using blink::WebCString;
+using blink::WebFontInfo;
+using blink::WebUChar;
+using blink::WebUChar32;
namespace content {
@@ -260,7 +260,7 @@ class SandboxIPCProcess {
if (!pickle.ReadString(&iter, &preferred_locale))
return;
- WebKit::WebFontFamily family;
+ blink::WebFontFamily family;
WebFontInfo::familyForChar(c, preferred_locale.c_str(), &family);
Pickle reply;
@@ -286,7 +286,7 @@ class SandboxIPCProcess {
}
EnsureWebKitInitialized();
- WebKit::WebFontRenderStyle style;
+ blink::WebFontRenderStyle style;
WebFontInfo::renderStyleForStrike(family.c_str(), sizeAndStyle, &style);
Pickle reply;
@@ -654,14 +654,14 @@ class SandboxIPCProcess {
SandboxIPCProcess::~SandboxIPCProcess() {
paths_.deleteAll();
if (webkit_platform_support_)
- WebKit::shutdownWithoutV8();
+ blink::shutdownWithoutV8();
}
void SandboxIPCProcess::EnsureWebKitInitialized() {
if (webkit_platform_support_)
return;
webkit_platform_support_.reset(new WebKitPlatformSupportImpl);
- WebKit::initializeWithoutV8(webkit_platform_support_.get());
+ blink::initializeWithoutV8(webkit_platform_support_.get());
}
// -----------------------------------------------------------------------------
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/browser/renderer_host/render_view_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698