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

Side by Side Diff: chrome/renderer/dom_ui_bindings.cc

Issue 6248026: Rename Real* to Double* in values.* and dependent files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More renames Created 9 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/dom_ui_bindings.h" 5 #include "chrome/renderer/dom_ui_bindings.h"
6 6
7 #include "base/json/json_writer.h" 7 #include "base/json/json_writer.h"
8 #include "base/scoped_ptr.h" 8 #include "base/scoped_ptr.h"
9 #include "base/stl_util-inl.h" 9 #include "base/stl_util-inl.h"
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "chrome/common/render_messages.h" 11 #include "chrome/common/render_messages.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURL.h"
14 14
15 namespace { 15 namespace {
16 16
17 // Creates a Value which is a copy of the CppVariant |value|. All objects are 17 // Creates a Value which is a copy of the CppVariant |value|. All objects are
18 // treated as Lists for now since CppVariant does not distinguish arrays in any 18 // treated as Lists for now since CppVariant does not distinguish arrays in any
19 // convenient way and we currently have no need of non array objects. 19 // convenient way and we currently have no need of non array objects.
20 Value* CreateValueFromCppVariant(const CppVariant& value) { 20 Value* CreateValueFromCppVariant(const CppVariant& value) {
21 if (value.isBool()) 21 if (value.isBool())
22 return Value::CreateBooleanValue(value.ToBoolean()); 22 return Value::CreateBooleanValue(value.ToBoolean());
23 if (value.isDouble()) 23 if (value.isDouble())
24 return Value::CreateRealValue(value.ToDouble()); 24 return Value::CreateDoubleValue(value.ToDouble());
25 if (value.isInt32()) 25 if (value.isInt32())
26 return Value::CreateIntegerValue(value.ToInt32()); 26 return Value::CreateIntegerValue(value.ToInt32());
27 if (value.isString()) 27 if (value.isString())
28 return Value::CreateStringValue(value.ToString()); 28 return Value::CreateStringValue(value.ToString());
29 29
30 if (value.isObject()) { 30 if (value.isObject()) {
31 // We currently assume all objects are arrays. 31 // We currently assume all objects are arrays.
32 std::vector<CppVariant> vector = value.ToVector(); 32 std::vector<CppVariant> vector = value.ToVector();
33 ListValue* list = new ListValue(); 33 ListValue* list = new ListValue();
34 for (size_t i = 0; i < vector.size(); ++i) { 34 for (size_t i = 0; i < vector.size(); ++i) {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 new ViewHostMsg_DOMUISend(routing_id(), source_url, message, content)); 90 new ViewHostMsg_DOMUISend(routing_id(), source_url, message, content));
91 } 91 }
92 92
93 void DOMBoundBrowserObject::SetProperty(const std::string& name, 93 void DOMBoundBrowserObject::SetProperty(const std::string& name,
94 const std::string& value) { 94 const std::string& value) {
95 CppVariant* cpp_value = new CppVariant; 95 CppVariant* cpp_value = new CppVariant;
96 cpp_value->Set(value); 96 cpp_value->Set(value);
97 BindProperty(name, cpp_value); 97 BindProperty(name, cpp_value);
98 properties_.push_back(cpp_value); 98 properties_.push_back(cpp_value);
99 } 99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698