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

Unified Diff: Source/web/WebHeap.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « Source/web/WebGlyphCache.cpp ('k') | Source/web/WebHelperPluginImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebHeap.cpp
diff --git a/Source/web/WebHeap.cpp b/Source/web/WebHeap.cpp
index 5b535a4a98c2d8d53d349dc406c4e874c9a51a0c..c10ee70871767d1bf27ed0360c83944c8551becd 100644
--- a/Source/web/WebHeap.cpp
+++ b/Source/web/WebHeap.cpp
@@ -37,22 +37,22 @@ namespace blink {
void WebHeap::attachThread()
{
- WebCore::ThreadState::attach();
+ blink::ThreadState::attach();
}
void WebHeap::detachThread()
{
- WebCore::ThreadState::detach();
+ blink::ThreadState::detach();
}
WebHeap::SafePointScope::SafePointScope()
{
- WebCore::ThreadState::current()->enterSafePointWithPointers(this);
+ blink::ThreadState::current()->enterSafePointWithPointers(this);
}
WebHeap::SafePointScope::~SafePointScope()
{
- WebCore::ThreadState::current()->leaveSafePoint();
+ blink::ThreadState::current()->leaveSafePoint();
}
} // namespace blink
« no previous file with comments | « Source/web/WebGlyphCache.cpp ('k') | Source/web/WebHelperPluginImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698