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

Unified Diff: platform_tools/nacl/src/nacl_interface.cpp

Issue 408243003: remove command line args (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/nacl/src/nacl_interface.cpp
diff --git a/platform_tools/nacl/src/nacl_interface.cpp b/platform_tools/nacl/src/nacl_interface.cpp
index 525f3efd6b40ac0b0e908b1d879f1beaa91d6ea8..297458dd8e624bc348be5524b9bfbb06d44d3b94 100644
--- a/platform_tools/nacl/src/nacl_interface.cpp
+++ b/platform_tools/nacl/src/nacl_interface.cpp
@@ -24,7 +24,7 @@ class SkiaInstance;
SkiaInstance* gPluginInstance;
// Main entry point for the app we're linked into
-extern int test_main(int, char**);
+extern int test_main();
// Tokenize a command line and store it in argc and argv.
void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) {
@@ -68,7 +68,7 @@ void RunProgram(const SkString& commandLine) {
int argc;
char** argv;
SkStringToProgramArgs(commandLine, &argc, &argv);
- test_main(argc, argv);
+ test_main();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698