| Index: webkit/tools/test_shell/test_webview_delegate.h
|
| diff --git a/webkit/tools/test_shell/test_webview_delegate.h b/webkit/tools/test_shell/test_webview_delegate.h
|
| index b89a6924e66e4a6df0514810d09f76e19db91921..54beb85c28318b34f813fb64e9636cfd1bb66faf 100644
|
| --- a/webkit/tools/test_shell/test_webview_delegate.h
|
| +++ b/webkit/tools/test_shell/test_webview_delegate.h
|
| @@ -17,6 +17,7 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| +#include "base/string16.h"
|
| #include "build/build_config.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSystem.h"
|
| @@ -344,7 +345,7 @@ class TestWebViewDelegate : public WebKit::WebViewClient,
|
| // Show a JavaScript alert as a popup message.
|
| // The caller should test whether we're in layout test mode and only
|
| // call this function when we really want a message to pop up.
|
| - void ShowJavaScriptAlert(const std::wstring& message);
|
| + void ShowJavaScriptAlert(const string16& message);
|
|
|
| // In the Mac code, this is called to trigger the end of a test after the
|
| // page has finished loading. From here, we can generate the dump for the
|
| @@ -369,7 +370,7 @@ class TestWebViewDelegate : public WebKit::WebViewClient,
|
| void UpdateSelectionClipboard(bool is_empty_selection);
|
|
|
| // Get a string suitable for dumping a frame to the console.
|
| - std::wstring GetFrameDescription(WebKit::WebFrame* webframe);
|
| + string16 GetFrameDescription(WebKit::WebFrame* webframe);
|
|
|
| // Causes navigation actions just printout the intended navigation instead
|
| // of taking you to the page. This is used for cases like mailto, where you
|
|
|