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

Unified Diff: Source/web/PageOverlayList.cpp

Issue 462353003: Cleanup namespace usage in Source/web[A-V]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor updates Created 6 years, 4 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/PageOverlay.cpp ('k') | Source/web/PageScaleConstraintsSet.cpp » ('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 405537c498ee993c9aeb30c049d565514791456d..f5b99ffa5642c655d8af3d766c639b8df0224852 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(blink::GraphicsContext& gc)
+void PageOverlayList::paintWebFrame(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(blink::GraphicsLayer* layer)
+size_t PageOverlayList::findGraphicsLayer(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/PageOverlay.cpp ('k') | Source/web/PageScaleConstraintsSet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698