Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |