diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-07 19:22:27 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-07 19:22:27 +0000 |
commit | d52a0b3f99d3a4b33901c02d51328e1879854926 (patch) | |
tree | dc96794a157a346157d0e66e494938b3cf5657a2 /chrome/test/v8_unit_test.h | |
parent | 3cf5d278c024e61903b4b615761b237abcafe725 (diff) | |
download | chromium_src-d52a0b3f99d3a4b33901c02d51328e1879854926.zip chromium_src-d52a0b3f99d3a4b33901c02d51328e1879854926.tar.gz chromium_src-d52a0b3f99d3a4b33901c02d51328e1879854926.tar.bz2 |
Remove unneeded includes of base/string_piece.h
Review URL: http://codereview.chromium.org/62016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/v8_unit_test.h')
-rw-r--r-- | chrome/test/v8_unit_test.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/test/v8_unit_test.h b/chrome/test/v8_unit_test.h index da52163..1502e9d 100644 --- a/chrome/test/v8_unit_test.h +++ b/chrome/test/v8_unit_test.h @@ -7,10 +7,11 @@ #include <string> -#include "base/string_piece.h" #include "testing/gtest/include/gtest/gtest.h" #include "v8/include/v8.h" +class StringPiece; + // A superclass for unit tests that involve running JavaScript. This class // sets up V8 context and has methods that make it easy to execute scripts in // this context as well as call functions in the context. |