| Index: chrome/browser/debugger/devtools_window.cc
|
| diff --git a/chrome/browser/debugger/devtools_window.cc b/chrome/browser/debugger/devtools_window.cc
|
| index 52e2d13b0b5db7e4c8206161300fac134c64a8e1..e4ea6aade0515470b2933d43624d562d20383c55 100644
|
| --- a/chrome/browser/debugger/devtools_window.cc
|
| +++ b/chrome/browser/debugger/devtools_window.cc
|
| @@ -373,9 +373,9 @@ void DevToolsWindow::UpdateFrontendAttachedState() {
|
|
|
| void DevToolsWindow::AddDevToolsExtensionsToClient() {
|
| if (inspected_tab_) {
|
| - base::FundamentalValue tabId(
|
| + base::NumberValue tab_id(
|
| inspected_tab_->restore_tab_helper()->session_id().id());
|
| - CallClientFunction(ASCIIToUTF16("WebInspector.setInspectedTabId"), tabId);
|
| + CallClientFunction(ASCIIToUTF16("WebInspector.setInspectedTabId"), tab_id);
|
| }
|
| ListValue results;
|
| const ExtensionService* extension_service =
|
| @@ -391,7 +391,7 @@ void DevToolsWindow::AddDevToolsExtensionsToClient() {
|
| continue;
|
| DictionaryValue* extension_info = new DictionaryValue();
|
| extension_info->Set("startPage",
|
| - new StringValue((*extension)->devtools_url().spec()));
|
| + base::StringValue::New((*extension)->devtools_url().spec()));
|
| results.Append(extension_info);
|
| }
|
| CallClientFunction(ASCIIToUTF16("WebInspector.addExtensions"), results);
|
|
|