diff options
Diffstat (limited to 'WebKit/android/jni')
-rw-r--r-- | WebKit/android/jni/WebSettings.cpp | 2 | ||||
-rw-r--r-- | WebKit/android/jni/WebViewCore.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/android/jni/WebSettings.cpp b/WebKit/android/jni/WebSettings.cpp index 15b1ef1..1b01f5e 100644 --- a/WebKit/android/jni/WebSettings.cpp +++ b/WebKit/android/jni/WebSettings.cpp @@ -314,7 +314,7 @@ public: if (pluginsPath.length()) { s->setPluginsPath(pluginsPath); // Set the plugin directories to this single entry. - Vector< ::WebCore::String > paths(1); + WTF::Vector< ::WebCore::String > paths(1); paths[0] = pluginsPath; pluginDatabase->setPluginDirectories(paths); // Set the home directory for plugin temporary files diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp index 55e4359..11af525 100644 --- a/WebKit/android/jni/WebViewCore.cpp +++ b/WebKit/android/jni/WebViewCore.cpp @@ -1659,7 +1659,7 @@ public: // If count is 1 or 0, use replyInt. SkASSERT(count > 1); - const Vector<HTMLElement*>& items = m_select->listItems(); + const WTF::Vector<HTMLElement*>& items = m_select->listItems(); int totalItems = static_cast<int>(items.size()); // Keep track of the position of the value we are comparing against. int arrayIndex = 0; |