| Index: chrome/browser/ui/search/instant_ntp_prerenderer.cc
|
| diff --git a/chrome/browser/ui/search/instant_ntp_prerenderer.cc b/chrome/browser/ui/search/instant_ntp_prerenderer.cc
|
| index 2edfc11dd058ec678cf8e23164ca43fcb91fc51a..7b3957adc56cb3422ac9ec35c2140c24df4c4acd 100644
|
| --- a/chrome/browser/ui/search/instant_ntp_prerenderer.cc
|
| +++ b/chrome/browser/ui/search/instant_ntp_prerenderer.cc
|
| @@ -197,29 +197,37 @@ void InstantNTPPrerenderer::InstantSupportDetermined(
|
| }
|
|
|
| void InstantNTPPrerenderer::InstantPageAboutToNavigateMainFrame(
|
| - const content::WebContents* contents,
|
| - const GURL& url) {
|
| + const content::WebContents* /* contents */,
|
| + const GURL& /* url */) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +void InstantNTPPrerenderer::FocusOmnibox(
|
| + const content::WebContents* /* contents */,
|
| + OmniboxFocusState /* state */) {
|
| NOTREACHED();
|
| }
|
|
|
| -void InstantNTPPrerenderer::FocusOmnibox(const content::WebContents* contents,
|
| - OmniboxFocusState state) {
|
| +void InstantNTPPrerenderer::NavigateToURL(
|
| + const content::WebContents* /* contents */,
|
| + const GURL& /* url */,
|
| + content::PageTransition /* transition */,
|
| + WindowOpenDisposition /* disposition */,
|
| + bool /* is_search_type */) {
|
| NOTREACHED();
|
| }
|
|
|
| -void InstantNTPPrerenderer::NavigateToURL(const content::WebContents* contents,
|
| - const GURL& url,
|
| - content::PageTransition transition,
|
| - WindowOpenDisposition disposition,
|
| - bool is_search_type) {
|
| +void InstantNTPPrerenderer::PasteIntoOmnibox(
|
| + const content::WebContents* /* contents */,
|
| + const string16& /* text */) {
|
| NOTREACHED();
|
| }
|
|
|
| -void InstantNTPPrerenderer::DeleteMostVisitedItem(const GURL& url) {
|
| +void InstantNTPPrerenderer::DeleteMostVisitedItem(const GURL& /* url */) {
|
| NOTREACHED();
|
| }
|
|
|
| -void InstantNTPPrerenderer::UndoMostVisitedDeletion(const GURL& url) {
|
| +void InstantNTPPrerenderer::UndoMostVisitedDeletion(const GURL& /* url */) {
|
| NOTREACHED();
|
| }
|
|
|
|
|