summaryrefslogtreecommitdiffstats
path: root/chrome/common/jstemplate_builder.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-07 19:22:27 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-07 19:22:27 +0000
commitd52a0b3f99d3a4b33901c02d51328e1879854926 (patch)
treedc96794a157a346157d0e66e494938b3cf5657a2 /chrome/common/jstemplate_builder.h
parent3cf5d278c024e61903b4b615761b237abcafe725 (diff)
downloadchromium_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/common/jstemplate_builder.h')
-rw-r--r--chrome/common/jstemplate_builder.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/common/jstemplate_builder.h b/chrome/common/jstemplate_builder.h
index 4022daf..4bc619b 100644
--- a/chrome/common/jstemplate_builder.h
+++ b/chrome/common/jstemplate_builder.h
@@ -10,13 +10,14 @@
// - given a json data object, run the jstemplate javascript which fills in
// template values
-#ifndef CHROME_RENDERER_JSTEMPLATE_BUILDER_H__
-#define CHROME_RENDERER_JSTEMPLATE_BUILDER_H__
+#ifndef CHROME_COMMON_JSTEMPLATE_BUILDER_H_
+#define CHROME_COMMON_JSTEMPLATE_BUILDER_H_
#include <string>
#include "base/values.h"
-#include "base/string_piece.h"
+
+class StringPiece;
namespace jstemplate_builder {
// A helper function that generates a string of HTML to be loaded. The
@@ -26,4 +27,4 @@ namespace jstemplate_builder {
const DictionaryValue* json,
const StringPiece& template_id);
} // namespace jstemplate_builder
-#endif // CHROME_RENDERER_JSTEMPLATE_BUILDER_H__
+#endif // CHROME_COMMON_JSTEMPLATE_BUILDER_H_