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

Unified Diff: Source/web/WebPluginContainerImpl.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/WebPluginContainerImpl.h ('k') | Source/web/WebPluginDocument.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPluginContainerImpl.cpp
diff --git a/Source/web/WebPluginContainerImpl.cpp b/Source/web/WebPluginContainerImpl.cpp
index 301087d11c2f03aa87570dcdb8160767a0bfebf3..4808407bbae8597afa6362b404616222c5ea9809 100644
--- a/Source/web/WebPluginContainerImpl.cpp
+++ b/Source/web/WebPluginContainerImpl.cpp
@@ -90,7 +90,7 @@
#include "web/WebViewImpl.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -334,7 +334,7 @@ int WebPluginContainerImpl::printBegin(const WebPrintParams& printParams) const
}
bool WebPluginContainerImpl::printPage(int pageNumber,
- WebCore::GraphicsContext* gc)
+ blink::GraphicsContext* gc)
{
if (gc->paintingDisabled())
return true;
@@ -656,8 +656,8 @@ bool WebPluginContainerImpl::paintCustomOverhangArea(GraphicsContext* context, c
// Private methods -------------------------------------------------------------
-WebPluginContainerImpl::WebPluginContainerImpl(WebCore::HTMLPlugInElement* element, WebPlugin* webPlugin)
- : WebCore::FrameDestructionObserver(element->document().frame())
+WebPluginContainerImpl::WebPluginContainerImpl(blink::HTMLPlugInElement* element, WebPlugin* webPlugin)
+ : blink::FrameDestructionObserver(element->document().frame())
, m_element(element)
, m_webPlugin(webPlugin)
, m_webLayer(0)
@@ -921,7 +921,7 @@ void WebPluginContainerImpl::calculateGeometry(const IntRect& frameRect,
cutOutRects[i].move(-frameRect.x(), -frameRect.y());
}
-WebCore::IntRect WebPluginContainerImpl::windowClipRect() const
+blink::IntRect WebPluginContainerImpl::windowClipRect() const
{
// Start by clipping to our bounds.
IntRect clipRect =
« no previous file with comments | « Source/web/WebPluginContainerImpl.h ('k') | Source/web/WebPluginDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698