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

Unified Diff: extensions/browser/extension_function.h

Issue 522763002: Moving capture_web_contents_function to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « extensions/browser/api/capture_web_contents_function_impl.h ('k') | extensions/common/constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_function.h
diff --git a/extensions/browser/extension_function.h b/extensions/browser/extension_function.h
index a10f422357198448a99cbc773081cc8b93176b00..982ec486809f1abecfba2ec78415af61fb8c451d 100644
--- a/extensions/browser/extension_function.h
+++ b/extensions/browser/extension_function.h
@@ -53,7 +53,7 @@ class Sender;
#define EXTENSION_FUNCTION_VALIDATE(test) \
do { \
if (!(test)) { \
- bad_message_ = true; \
+ this->bad_message_ = true; \
Ken Rockot(use gerrit already) 2014/09/02 21:16:21 nit: Is this really necessary?
return ValidationFailure(this); \
} \
} while (0)
@@ -64,7 +64,7 @@ class Sender;
#define EXTENSION_FUNCTION_ERROR(error) \
do { \
error_ = error; \
- bad_message_ = true; \
+ this->bad_message_ = true; \
return ValidationFailure(this); \
} while (0)
« no previous file with comments | « extensions/browser/api/capture_web_contents_function_impl.h ('k') | extensions/common/constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698