fix nacl
authorcaryclark <caryclark@google.com>
Tue, 22 Jul 2014 17:40:06 +0000 (10:40 -0700)
committerCommit bot <commit-bot@chromium.org>
Tue, 22 Jul 2014 17:40:06 +0000 (10:40 -0700)
R=robertphillips@google.com
TBR=robertphillips
NOTRY=true
NOTREECHECKS=true

Author: caryclark@google.com

Review URL: https://codereview.chromium.org/407163002

platform_tools/nacl/src/nacl_interface.cpp

index 09d55c3..525f3ef 100644 (file)
@@ -24,7 +24,7 @@ class SkiaInstance;
 SkiaInstance* gPluginInstance;
 
 // Main entry point for the app we're linked into
-extern int tool_main(int, char**);
+extern int test_main(int, char**);
 
 // 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);
-    tool_main(argc, argv);
+    test_main(argc, argv);
 }