Index: public/web/WebWindowFeatures.h |
diff --git a/public/web/WebWindowFeatures.h b/public/web/WebWindowFeatures.h |
index 7a67a6b518369879c5b57bebde8bde7f7f47d12a..814eeaafb623878527bf1fcf8cbd5d8a1972e568 100644 |
--- a/public/web/WebWindowFeatures.h |
+++ b/public/web/WebWindowFeatures.h |
@@ -84,7 +84,7 @@ struct WebWindowFeatures { |
#if BLINK_IMPLEMENTATION |
- WebWindowFeatures(const blink::WindowFeatures& f) |
+ WebWindowFeatures(const WindowFeatures& f) |
: x(f.x) |
, xSet(f.xSet) |
, y(f.y) |
@@ -105,9 +105,9 @@ struct WebWindowFeatures { |
{ |
} |
- operator blink::WindowFeatures() const |
+ operator WindowFeatures() const |
{ |
- blink::WindowFeatures result; |
+ WindowFeatures result; |
result.x = x; |
result.xSet = xSet; |
result.y = y; |