| Index: Source/bindings/v8/BindingSecurity.h
|
| ===================================================================
|
| --- Source/bindings/v8/BindingSecurity.h (revision 170478)
|
| +++ Source/bindings/v8/BindingSecurity.h (working copy)
|
| @@ -31,8 +31,6 @@
|
| #ifndef BindingSecurity_h
|
| #define BindingSecurity_h
|
|
|
| -// FIXME: The LocalFrame include should not be necessary, clients should be including it where they use it.
|
| -#include "core/frame/LocalFrame.h"
|
| #include "wtf/text/WTFString.h"
|
| #include <v8.h>
|
|
|
| @@ -40,6 +38,7 @@
|
|
|
| class DOMWindow;
|
| class ExceptionState;
|
| +class LocalFrame;
|
| class Node;
|
|
|
| enum SecurityReportingOption {
|
| @@ -50,8 +49,8 @@
|
| class BindingSecurity {
|
| public:
|
| static bool shouldAllowAccessToNode(v8::Isolate*, Node*, ExceptionState&);
|
| - static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, SecurityReportingOption = ReportSecurityError);
|
| - static bool shouldAllowAccessToFrame(v8::Isolate*, Frame*, ExceptionState&);
|
| + static bool shouldAllowAccessToFrame(v8::Isolate*, LocalFrame*, SecurityReportingOption = ReportSecurityError);
|
| + static bool shouldAllowAccessToFrame(v8::Isolate*, LocalFrame*, ExceptionState&);
|
| };
|
|
|
| }
|
|
|