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

Unified Diff: chrome/browser/extensions/api/test/test_api.cc

Issue 12319145: Using the new Network*Handlers in networkingPrivate Extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial patch. Created 7 years, 10 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: chrome/browser/extensions/api/test/test_api.cc
diff --git a/chrome/browser/extensions/api/test/test_api.cc b/chrome/browser/extensions/api/test/test_api.cc
index 89111278c52ba47c71e92dbfdfa4e1132ca5bfc4..d3baafc7a37fba5cb7623d0e059cd4e68c4671ee 100644
--- a/chrome/browser/extensions/api/test/test_api.cc
+++ b/chrome/browser/extensions/api/test/test_api.cc
@@ -70,6 +70,7 @@ TestLogFunction::~TestLogFunction() {}
bool TestLogFunction::RunImpl() {
std::string message;
EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &message));
+ LOG(ERROR) << message;
Greg Spencer (Chromium) 2013/03/02 00:09:11 Are you sure we want this? Seems like someone put
pneubeck (no reviews) 2013/03/04 10:44:38 Yes. that's a leftover. Somehow it's not possible
VLOG(1) << message;
return true;
}

Powered by Google App Engine
This is Rietveld 408576698