diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-04 23:51:10 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-04 23:51:10 +0000 |
commit | 20566c9399509e51671f1781d38ba62c9a83454c (patch) | |
tree | 38354148edca34672c4c44584ab1e6c1ef610470 /content/common/json_value_serializer.h | |
parent | fbbed0aba0e92c7aa9545d1e8ed5a18f4b23c70e (diff) | |
download | chromium_src-20566c9399509e51671f1781d38ba62c9a83454c.zip chromium_src-20566c9399509e51671f1781d38ba62c9a83454c.tar.gz chromium_src-20566c9399509e51671f1781d38ba62c9a83454c.tar.bz2 |
base: Remove unnecessary using declarations from values.h
BUG=None
TEST=None
R=evan@chromium.org
Review URL: http://codereview.chromium.org/7572032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95538 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/json_value_serializer.h')
-rw-r--r-- | content/common/json_value_serializer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/common/json_value_serializer.h b/content/common/json_value_serializer.h index 8d2a8f5..afb18f8 100644 --- a/content/common/json_value_serializer.h +++ b/content/common/json_value_serializer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -12,7 +12,7 @@ #include "base/file_path.h" #include "base/values.h" -class JSONStringValueSerializer : public ValueSerializer { +class JSONStringValueSerializer : public base::ValueSerializer { public: // json_string is the string that will be source of the deserialization // or the destination of the serialization. The caller of the constructor @@ -66,7 +66,7 @@ class JSONStringValueSerializer : public ValueSerializer { DISALLOW_COPY_AND_ASSIGN(JSONStringValueSerializer); }; -class JSONFileValueSerializer : public ValueSerializer { +class JSONFileValueSerializer : public base::ValueSerializer { public: // json_file_patch is the path of a file that will be source of the // deserialization or the destination of the serialization. |