Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/ConsoleJsObject.cpp

Issue 10259001: XMLHttpRequest API (Closed)
Patch Set: Addressed review comments Created April 11, 2013, 4:30 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/WebRequestJsObject.cpp ('k') | test/FilterEngineStubs.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/ConsoleJsObject.cpp
===================================================================
--- a/test/ConsoleJsObject.cpp
+++ b/test/ConsoleJsObject.cpp
@@ -10,18 +10,18 @@ public:
{
lastMessage = message;
}
};
TEST(ConsoleJsObjectTest, ErrorInvokesErrorCallback)
{
MockErrorCallback errorCallback;
- AdblockPlus::JsEngine jsEngine(0, &errorCallback);
+ AdblockPlus::JsEngine jsEngine(0, 0, &errorCallback);
jsEngine.Evaluate("console.error('foo')");
ASSERT_EQ("foo", errorCallback.lastMessage);
}
TEST(ConsoleJsObjectTest, TraceDoesNothing)
{
- AdblockPlus::JsEngine jsEngine(0, 0);
+ AdblockPlus::JsEngine jsEngine(0, 0, 0);
jsEngine.Evaluate("console.trace()");
}
« no previous file with comments | « src/WebRequestJsObject.cpp ('k') | test/FilterEngineStubs.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld