Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Unified Diff: extensions/renderer/bindings/api_bindings_system_unittest.cc

Issue 2961103002: [Extensions Bindings] Add an ExceptionHandler class (Closed)
Patch Set: jbroman's Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: extensions/renderer/bindings/api_bindings_system_unittest.cc
diff --git a/extensions/renderer/bindings/api_bindings_system_unittest.cc b/extensions/renderer/bindings/api_bindings_system_unittest.cc
index 6c0eb0af779392e8618923df1e3dc91803373113..6c10e2852a469ddcc13f67ffa90749b75889d218 100644
--- a/extensions/renderer/bindings/api_bindings_system_unittest.cc
+++ b/extensions/renderer/bindings/api_bindings_system_unittest.cc
@@ -118,9 +118,10 @@ void APIBindingsSystemTest::SetUp() {
base::Bind(&APIBindingsSystemTest::OnAPIRequest, base::Unretained(this)),
base::Bind(&APIBindingsSystemTest::OnEventListenersChanged,
base::Unretained(this)),
+ binding::AddConsoleError(),
APILastError(base::Bind(&APIBindingsSystemTest::GetLastErrorParent,
base::Unretained(this)),
- APILastError::AddConsoleError()));
+ binding::AddConsoleError()));
}
void APIBindingsSystemTest::TearDown() {

Powered by Google App Engine
This is Rietveld 408576698