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

Unified Diff: Source/web/PageOverlayList.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/PageOverlayList.h ('k') | Source/web/PageScaleConstraintsSet.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PageOverlayList.cpp
diff --git a/Source/web/PageOverlayList.cpp b/Source/web/PageOverlayList.cpp
index 66598a8a098967f6afdf1d628660b2f0599be3da..405537c498ee993c9aeb30c049d565514791456d 100644
--- a/Source/web/PageOverlayList.cpp
+++ b/Source/web/PageOverlayList.cpp
@@ -112,7 +112,7 @@ void PageOverlayList::update()
m_pageOverlays[i]->update();
}
-void PageOverlayList::paintWebFrame(WebCore::GraphicsContext& gc)
+void PageOverlayList::paintWebFrame(blink::GraphicsContext& gc)
{
for (size_t i = 0; i < m_pageOverlays.size(); ++i)
m_pageOverlays[i]->paintWebFrame(gc);
@@ -127,7 +127,7 @@ size_t PageOverlayList::find(WebPageOverlay* overlay)
return WTF::kNotFound;
}
-size_t PageOverlayList::findGraphicsLayer(WebCore::GraphicsLayer* layer)
+size_t PageOverlayList::findGraphicsLayer(blink::GraphicsLayer* layer)
{
for (size_t i = 0; i < m_pageOverlays.size(); ++i) {
if (m_pageOverlays[i]->graphicsLayer() == layer)
« no previous file with comments | « Source/web/PageOverlayList.h ('k') | Source/web/PageScaleConstraintsSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698