| Index: chrome/browser/automation/automation_provider.cc
|
| ===================================================================
|
| --- chrome/browser/automation/automation_provider.cc (revision 54340)
|
| +++ chrome/browser/automation/automation_provider.cc (working copy)
|
| @@ -21,6 +21,7 @@
|
| #include "base/string_util.h"
|
| #include "base/task.h"
|
| #include "base/thread.h"
|
| +#include "base/string_number_conversions.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "base/waitable_event.h"
|
| @@ -4334,7 +4335,7 @@
|
| }
|
| index++;
|
| }
|
| - *value = IntToString(found_index);
|
| + *value = base::IntToString(found_index);
|
| *success = true;
|
| }
|
| break;
|
|
|