Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / sync / js / js_arg_list.cc
blob8eec0aaf0341865eea1d12b2c4f1028acecc1495
1 // Copyright (c) 2012 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.
5 #include "sync/js/js_arg_list.h"
7 #include "base/json/json_writer.h"
9 namespace syncer {
11 JsArgList::JsArgList() {}
13 JsArgList::JsArgList(ListValue* args) : args_(args) {}
15 JsArgList::~JsArgList() {}
17 const ListValue& JsArgList::Get() const {
18 return args_.Get();
21 std::string JsArgList::ToString() const {
22 std::string str;
23 base::JSONWriter::Write(&Get(), &str);
24 return str;
27 } // namespace syncer