| Index: third_party/WebKit/Source/core/page/WindowFeatures.h
|
| diff --git a/third_party/WebKit/Source/core/page/WindowFeatures.h b/third_party/WebKit/Source/core/page/WindowFeatures.h
|
| index e2845cc4c82524f580307dd16c60ab560ab288da..14d7bd152626ce7b30843b573cce48210ee359d4 100644
|
| --- a/third_party/WebKit/Source/core/page/WindowFeatures.h
|
| +++ b/third_party/WebKit/Source/core/page/WindowFeatures.h
|
| @@ -29,6 +29,7 @@
|
| #ifndef WindowFeatures_h
|
| #define WindowFeatures_h
|
|
|
| +#include "core/CoreExport.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/HashMap.h"
|
| #include "wtf/text/WTFString.h"
|
| @@ -37,7 +38,7 @@ namespace blink {
|
|
|
| class IntRect;
|
|
|
| -struct WindowFeatures {
|
| +struct CORE_EXPORT WindowFeatures {
|
| DISALLOW_NEW();
|
| WindowFeatures()
|
| : x(0)
|
| @@ -56,6 +57,7 @@ struct WindowFeatures {
|
| , resizable(true)
|
| , fullscreen(false)
|
| , dialog(false)
|
| + , noopener(false)
|
| {
|
| }
|
| explicit WindowFeatures(const String& windowFeaturesString);
|
| @@ -80,6 +82,8 @@ struct WindowFeatures {
|
| bool fullscreen;
|
| bool dialog;
|
|
|
| + bool noopener;
|
| +
|
| Vector<String> additionalFeatures;
|
|
|
| private:
|
|
|