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

Unified Diff: Source/bindings/v8/ScriptFunctionCall.h

Issue 207783002: Omit "int" when using "unsigned" modifier (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 | « no previous file | Source/bindings/v8/ScriptFunctionCall.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/ScriptFunctionCall.h
diff --git a/Source/bindings/v8/ScriptFunctionCall.h b/Source/bindings/v8/ScriptFunctionCall.h
index 3f5efdb75736260feeba96913c7f068d16a30f77..0c092bea84481c280bcb1e7d9acb15a93a21d06c 100644
--- a/Source/bindings/v8/ScriptFunctionCall.h
+++ b/Source/bindings/v8/ScriptFunctionCall.h
@@ -50,7 +50,7 @@ namespace WebCore {
void appendArgument(const char*);
void appendArgument(long);
void appendArgument(long long);
- void appendArgument(unsigned int);
+ void appendArgument(unsigned);
void appendArgument(unsigned long);
void appendArgument(int);
void appendArgument(bool);
« no previous file with comments | « no previous file | Source/bindings/v8/ScriptFunctionCall.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698