summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/mac
diff options
context:
space:
mode:
authoravi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-11 20:53:28 +0000
committeravi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-11 20:53:28 +0000
commitee0c854114f42eed11a41d0b930ec2b341632156 (patch)
tree17d241602b875105f562a84a88cbbb4bd05493aa /webkit/tools/test_shell/mac
parent0555ade2edd408df00689d3d29d2521eea1824e7 (diff)
downloadchromium_src-ee0c854114f42eed11a41d0b930ec2b341632156.zip
chromium_src-ee0c854114f42eed11a41d0b930ec2b341632156.tar.gz
chromium_src-ee0c854114f42eed11a41d0b930ec2b341632156.tar.bz2
Minor fixes for Mac main. Won't compile cleanly until the WebCore merge comes.
Review URL: http://codereview.chromium.org/1949 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2078 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/mac')
-rw-r--r--webkit/tools/test_shell/mac/main.mm4
1 files changed, 1 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/mac/main.mm b/webkit/tools/test_shell/mac/main.mm
index 85ef884..0e7a47d 100644
--- a/webkit/tools/test_shell/mac/main.mm
+++ b/webkit/tools/test_shell/mac/main.mm
@@ -8,8 +8,6 @@
#include <string>
-#include "config.h"
-
// #include "base/event_recorder.h"
#include "base/basictypes.h"
#include "base/command_line.h"
@@ -29,7 +27,7 @@ static char g_currentTestName[PATH_MAX];
// Extracts the name of the test from the given path and sets the test name
// global.
-void SetCurrentTestName(const char* path) {
+void SetCurrentTestName(char* path) {
char* lastSlash = strrchr(path, '/');
if (lastSlash) {
++lastSlash;