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

Unified Diff: public/web/WebWindowFeatures.h

Issue 401973003: Rename WebCore namespace to blink in Public (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 | « public/web/WebUserMediaRequest.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebWindowFeatures.h
diff --git a/public/web/WebWindowFeatures.h b/public/web/WebWindowFeatures.h
index 6490b3fcc5e6bcfd8d01516562b019653fc7d25f..7a67a6b518369879c5b57bebde8bde7f7f47d12a 100644
--- a/public/web/WebWindowFeatures.h
+++ b/public/web/WebWindowFeatures.h
@@ -84,7 +84,7 @@ struct WebWindowFeatures {
#if BLINK_IMPLEMENTATION
- WebWindowFeatures(const WebCore::WindowFeatures& f)
+ WebWindowFeatures(const blink::WindowFeatures& f)
: x(f.x)
, xSet(f.xSet)
, y(f.y)
@@ -105,9 +105,9 @@ struct WebWindowFeatures {
{
}
- operator WebCore::WindowFeatures() const
+ operator blink::WindowFeatures() const
{
- WebCore::WindowFeatures result;
+ blink::WindowFeatures result;
result.x = x;
result.xSet = xSet;
result.y = y;
« no previous file with comments | « public/web/WebUserMediaRequest.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698