diff options
Diffstat (limited to 'webkit/glue/find_in_page_request.h')
-rw-r--r-- | webkit/glue/find_in_page_request.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/find_in_page_request.h b/webkit/glue/find_in_page_request.h index a10ca80..8594f05 100644 --- a/webkit/glue/find_in_page_request.h +++ b/webkit/glue/find_in_page_request.h @@ -5,7 +5,7 @@ #ifndef WEBKIT_GLUE_FIND_IN_PAGE_REQUEST_H__ #define WEBKIT_GLUE_FIND_IN_PAGE_REQUEST_H__ -#include <string> +#include "base/string16.h" // Parameters for a find in page request. struct FindInPageRequest { @@ -15,7 +15,7 @@ struct FindInPageRequest { int request_id; // The word(s) to find on the page. - std::wstring search_string; + string16 search_string; // Whether to search forward or backward within the page. bool forward; |