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

Unified Diff: webkit/tools/test_shell/test_navigation_controller.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_navigation_controller.h
diff --git a/webkit/tools/test_shell/test_navigation_controller.h b/webkit/tools/test_shell/test_navigation_controller.h
index 17de056b95b0a684f51ce82ef91bb0a0742a23b7..416d0f334a9ce7d5449450de876ac98490812d8a 100644
--- a/webkit/tools/test_shell/test_navigation_controller.h
+++ b/webkit/tools/test_shell/test_navigation_controller.h
@@ -11,7 +11,7 @@
#include "base/basictypes.h"
#include "base/memory/linked_ptr.h"
#include "base/memory/ref_counted.h"
-#include "base/string16.h"
+#include "base/string16.h.h"
#include "googleurl/src/gurl.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h"
@@ -40,7 +40,7 @@ class TestNavigationEntry {
TestNavigationEntry();
TestNavigationEntry(int page_id,
const GURL& url,
- const string16& target_frame);
+ const base::string16& target_frame);
// Virtual to allow test_shell to extend the class.
~TestNavigationEntry();
@@ -61,7 +61,7 @@ class TestNavigationEntry {
void SetPageID(int page_id) { page_id_ = page_id; }
int32 GetPageID() const { return page_id_; }
- const string16& GetTargetFrame() const { return target_frame_; }
+ const base::string16& GetTargetFrame() const { return target_frame_; }
private:
// Describes the current page that the tab represents. This is not relevant
@@ -71,7 +71,7 @@ class TestNavigationEntry {
GURL url_;
std::string state_;
- string16 target_frame_;
+ base::string16 target_frame_;
DISALLOW_COPY_AND_ASSIGN(TestNavigationEntry);
};

Powered by Google App Engine
This is Rietveld 408576698