summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/debugger_remote_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/debugger/debugger_remote_service.cc')
-rw-r--r--chrome/browser/debugger/debugger_remote_service.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/debugger/debugger_remote_service.cc b/chrome/browser/debugger/debugger_remote_service.cc
index 74ac1e0..0809564 100644
--- a/chrome/browser/debugger/debugger_remote_service.cc
+++ b/chrome/browser/debugger/debugger_remote_service.cc
@@ -96,7 +96,7 @@ void DebuggerRemoteService::HandleMessage(
return;
}
int32 tab_uid = -1;
- StringToInt(destination, &tab_uid);
+ base::StringToInt(destination, &tab_uid);
if (command == DebuggerRemoteServiceCommand::kAttach) {
// TODO(apavlov): handle 0 for a new tab
@@ -205,7 +205,7 @@ void DebuggerRemoteService::TabClosed(int32 tab_id) {
void DebuggerRemoteService::AttachToTab(const std::string& destination,
DictionaryValue* response) {
int32 tab_uid = -1;
- StringToInt(destination, &tab_uid);
+ base::StringToInt(destination, &tab_uid);
if (tab_uid < 0) {
// Bad tab_uid received from remote debugger (perhaps NaN)
response->SetInteger(kResultWide, RESULT_UNKNOWN_TAB);
@@ -249,7 +249,7 @@ void DebuggerRemoteService::AttachToTab(const std::string& destination,
void DebuggerRemoteService::DetachFromTab(const std::string& destination,
DictionaryValue* response) {
int32 tab_uid = -1;
- StringToInt(destination, &tab_uid);
+ base::StringToInt(destination, &tab_uid);
if (tab_uid == -1) {
// Bad tab_uid received from remote debugger (NaN)
if (response != NULL) {