| 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;
|
|
|