Chromium Code Reviews| Index: content/browser/web_contents/web_contents_impl.h |
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h |
| index 654ec64056872131c49dc9162a68c8c2562040b6..7a118053041e4043f517c27aac8328854c8f755b 100644 |
| --- a/content/browser/web_contents/web_contents_impl.h |
| +++ b/content/browser/web_contents/web_contents_impl.h |
| @@ -27,6 +27,10 @@ |
| #include "ui/gfx/size.h" |
| #include "webkit/glue/resource_type.h" |
| +#if defined(OS_ANDROID) |
| +#include "ui/gfx/rect_f.h" |
| +#endif |
|
joth
2012/09/04 22:43:31
nit: make the #include non-conditional if it's a c
Leandro GraciĆ” Gil
2012/09/05 00:57:09
Done.
|
| + |
| #if defined(OS_WIN) |
| #include "base/win/scoped_handle.h" |
| #endif |
| @@ -525,9 +529,16 @@ class CONTENT_EXPORT WebContentsImpl |
| const GURL& url, |
| const string16& title, |
| bool user_gesture); |
| - void OnFindReply(int request_id, int number_of_matches, |
| - const gfx::Rect& selection_rect, int active_match_ordinal, |
| + void OnFindReply(int request_id, |
| + int number_of_matches, |
| + const gfx::Rect& selection_rect, |
| + int active_match_ordinal, |
| bool final_update); |
| +#if defined(OS_ANDROID) |
| + void OnFindMatchRectsReply(int version, |
| + const std::vector<gfx::RectF>& rects, |
| + const gfx::RectF& active_rect); |
| +#endif |
| void OnCrashedPlugin(const FilePath& plugin_path); |
| void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); |
| void OnOpenColorChooser(int color_chooser_id, SkColor color); |