| Index: tests/Test.cpp
|
| diff --git a/tests/Test.cpp b/tests/Test.cpp
|
| index e57427a354952a7eca494826f1c160863c7b2029..9242054cf85e864cdbf2a58a8e2ef0cfe7405804 100644
|
| --- a/tests/Test.cpp
|
| +++ b/tests/Test.cpp
|
| @@ -1,10 +1,10 @@
|
| -
|
| /*
|
| * Copyright 2011 Google Inc.
|
| *
|
| * Use of this source code is governed by a BSD-style license that can be
|
| * found in the LICENSE file.
|
| */
|
| +
|
| #include "Test.h"
|
|
|
| #include "SkCommandLineFlags.h"
|
| @@ -41,6 +41,8 @@ void Reporter::endTest(Test* test) {
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|
| +SkString Test::gResourcePath;
|
| +
|
| Test::Test() : fReporter(NULL), fPassed(true) {}
|
|
|
| Test::~Test() {
|
| @@ -120,10 +122,3 @@ SkString Test::GetTmpDir() {
|
| const char* tmpDir = FLAGS_tmpDir.isEmpty() ? NULL : FLAGS_tmpDir[0];
|
| return SkString(tmpDir);
|
| }
|
| -
|
| -static const char* gResourcePath = NULL;
|
| -void Test::SetResourcePath(const char* resourcePath) { gResourcePath = resourcePath; }
|
| -
|
| -SkString Test::GetResourcePath() {
|
| - return SkString(gResourcePath);
|
| -}
|
|
|