| Index: webkit/glue/dom_operations.cc
|
| ===================================================================
|
| --- webkit/glue/dom_operations.cc (revision 54340)
|
| +++ webkit/glue/dom_operations.cc (working copy)
|
| @@ -2,10 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "webkit/glue/dom_operations.h"
|
| +
|
| #include <set>
|
|
|
| #include "base/compiler_specific.h"
|
| -#include "base/string_util.h"
|
| +#include "base/string_number_conversions.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebAnimationController.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebDocument.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebElement.h"
|
| @@ -17,7 +19,6 @@
|
| #include "third_party/WebKit/WebKit/chromium/public/WebNodeList.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebVector.h"
|
| #include "third_party/WebKit/WebKit/chromium/public/WebView.h"
|
| -#include "webkit/glue/dom_operations.h"
|
| #include "webkit/glue/form_data.h"
|
| #include "webkit/glue/password_form_dom_manager.h"
|
| #include "webkit/glue/webpasswordautocompletelistener_impl.h"
|
| @@ -405,7 +406,7 @@
|
| return 0;
|
| }
|
| int output;
|
| - if (!StringToInt(text, &output))
|
| + if (!base::StringToInt(text, &output))
|
| return 0;
|
| return output;
|
| }
|
|
|