Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: base/json/json_value_converter.cc

Issue 9289040: Remove reinterpret_cast on JSONValueConverter (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: remove unneeded BASE_EXPORT Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/json/json_value_converter.h"
6
7 #include <string>
8
9 namespace base {
10 namespace internal {
11
12 FieldConverterBase::FieldConverterBase(const std::string& path)
13 : field_path_(path) {
14 }
15
16 FieldConverterBase::~FieldConverterBase() {
17 }
18
19 } // namespace internal
20 } // namespace base
OLDNEW
« base/json/json_value_converter.h ('K') | « base/json/json_value_converter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698