Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1206)

Unified Diff: webkit/tools/test_shell/test_shell.h

Issue 13219005: Replace string16 with base::string16 in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/tools/test_shell/test_shell.h
diff --git a/webkit/tools/test_shell/test_shell.h b/webkit/tools/test_shell/test_shell.h
index c6394e98dfc8feda28b4817a5fd4c3ed289c5538..129ef9db71f44ce000c8773268ad06246cd7abc7 100644
--- a/webkit/tools/test_shell/test_shell.h
+++ b/webkit/tools/test_shell/test_shell.h
@@ -152,13 +152,13 @@ public:
void LoadFile(const base::FilePath& file);
void LoadURL(const GURL& url);
- void LoadURLForFrame(const GURL& url, const string16& frame_name);
+ void LoadURLForFrame(const GURL& url, const base::string16& frame_name);
void GoBackOrForward(int offset);
void Reload();
bool Navigate(const TestNavigationEntry& entry, bool reload);
bool PromptForSaveFile(const wchar_t* prompt_title, base::FilePath* result);
- string16 GetDocumentText();
+ base::string16 GetDocumentText();
void DumpDocumentText();
void DumpRenderTree();
@@ -191,13 +191,13 @@ public:
// Writes the back-forward list data for every open window into result.
// Should call DumpBackForwardListOfWindow on each TestShell window.
- static void DumpAllBackForwardLists(string16* result);
+ static void DumpAllBackForwardLists(base::string16* result);
// Writes the single back-forward entry into result.
- void DumpBackForwardEntry(int index, string16* result);
+ void DumpBackForwardEntry(int index, base::string16* result);
// Writes the back-forward list data for this test shell into result.
- void DumpBackForwardList(string16* result);
+ void DumpBackForwardList(base::string16* result);
static void ResetWebPreferences();

Powered by Google App Engine
This is Rietveld 408576698