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

Unified Diff: chrome/browser/debugger/devtools_remote_service.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/debugger/devtools_remote_service.cc
diff --git a/chrome/browser/debugger/devtools_remote_service.cc b/chrome/browser/debugger/devtools_remote_service.cc
index 329e1a8b0cb9a6f9b800bf8344e041bc18e147a4..178037a66aa8d8d02fd26e3dc5a4e94aae14c311 100644
--- a/chrome/browser/debugger/devtools_remote_service.cc
+++ b/chrome/browser/debugger/devtools_remote_service.cc
@@ -87,9 +87,9 @@ void DevToolsRemoteService::ProcessJson(DictionaryValue* json,
}
if (entry->url().is_valid()) {
ListValue* tab = new ListValue();
- tab->Append(Value::CreateIntegerValue(
+ tab->Append(base::NumberValue::New(
it->second->restore_tab_helper()->session_id().id()));
- tab->Append(Value::CreateStringValue(entry->url().spec()));
+ tab->Append(base::StringValue::New(entry->url().spec()));
data->Append(tab);
}
}
« no previous file with comments | « chrome/browser/custom_handlers/protocol_handler_registry.cc ('k') | chrome/browser/debugger/devtools_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698