| Index: chrome/renderer/searchbox/searchbox.h
|
| diff --git a/chrome/renderer/searchbox/searchbox.h b/chrome/renderer/searchbox/searchbox.h
|
| index 74c16c6f1f6cccc8ac023a37e6a66747ca4d2df7..fb1014d98546d1c2ea61a2a65df9b0d2a0f663bf 100644
|
| --- a/chrome/renderer/searchbox/searchbox.h
|
| +++ b/chrome/renderer/searchbox/searchbox.h
|
| @@ -15,6 +15,7 @@
|
| #include "content/public/renderer/render_view_observer.h"
|
| #include "content/public/renderer/render_view_observer_tracker.h"
|
| #include "ui/gfx/rect.h"
|
| +#include "webkit/glue/window_open_disposition.h"
|
|
|
| namespace content {
|
| class RenderView;
|
| @@ -41,7 +42,9 @@ class SearchBox : public content::RenderViewObserver,
|
| void StopCapturingKeyStrokes();
|
|
|
| // Send ChromeViewHostMsg_SearchBoxNavigate to the browser.
|
| - void NavigateToURL(const GURL& url, content::PageTransition transition);
|
| + void NavigateToURL(const GURL& url,
|
| + content::PageTransition transition,
|
| + WindowOpenDisposition disposition);
|
|
|
| const string16& query() const { return query_; }
|
| bool verbatim() const { return verbatim_; }
|
|
|