Index: third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.h |
diff --git a/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.h b/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.h |
index 4e86349c978720292b3d5c36b3abb35cdda00625..5d72cf746dbafd35ff583662f0d5fe38fa394f9b 100644 |
--- a/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.h |
+++ b/third_party/WebKit/Source/core/testing/v8/WebCoreTestSupport.h |
@@ -26,12 +26,13 @@ |
#ifndef WebCoreTestSupport_h |
#define WebCoreTestSupport_h |
+#include "wtf/text/WTFString.h" |
#include <v8.h> |
namespace blink { |
class ScriptState; |
struct WrapperTypeInfo; |
-} |
+} // namespace blink |
namespace WebCoreTestSupport { |
@@ -42,7 +43,9 @@ void installConditionalFeaturesForTests( |
const blink::ScriptState*, |
v8::Local<v8::Object> prototypeObject, |
v8::Local<v8::Function> interfaceObject); |
- |
-} // namespace blink |
+void installPendingConditionalFeatureForTests(const String&, |
iclelland
2017/01/26 20:14:12
nit: I think we should name the variable here, Str
chasej
2017/01/27 17:22:36
I realized the function declaration isn't needed a
|
+ const blink::ScriptState*); |
+void registerInstallConditionalFeaturesForTests(); |
+} // namespace WebCoreTestSupport |
iclelland
2017/01/26 20:14:12
nit: Blank line before
chasej
2017/01/27 17:22:36
Done.
|
#endif |