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

Unified Diff: extensions/browser/extension_function.cc

Issue 440813002: Expose gallery watching functionality to the public mediaGalleries API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup the code and prepare for review. Created 6 years, 4 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/browser/extension_function.cc
diff --git a/extensions/browser/extension_function.cc b/extensions/browser/extension_function.cc
index 773f027bac20c4e618c1b17cd5bfc24ab791f035..09cabbd31eaa224e7d686d104afa0ac6bf39e51e 100644
--- a/extensions/browser/extension_function.cc
+++ b/extensions/browser/extension_function.cc
@@ -321,7 +321,6 @@ void ExtensionFunction::SendResponseImpl(bool success) {
ResponseType type = success ? SUCCEEDED : FAILED;
if (bad_message_) {
type = BAD_MESSAGE;
- LOG(ERROR) << "Bad extension message " << name_;
tommycli 2014/08/19 16:36:03 Interesting... why?
Oren Blasberg 2014/08/20 22:59:37 Ugh. My bad, this was removed in error (i was debu
}
// If results were never set, we send an empty argument list.

Powered by Google App Engine
This is Rietveld 408576698