OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/tab_contents/interstitial_page.h" | 5 #include "chrome/browser/tab_contents/interstitial_page.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 #include "base/thread.h" | 9 #include "base/thread.h" |
10 #include "chrome/browser/browser_list.h" | 10 #include "chrome/browser/browser_list.h" |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 | 584 |
585 void InterstitialPage::InterstitialPageRVHViewDelegate::HandleMouseLeave() { | 585 void InterstitialPage::InterstitialPageRVHViewDelegate::HandleMouseLeave() { |
586 if (interstitial_page_->tab() && interstitial_page_->tab()->GetViewDelegate()) | 586 if (interstitial_page_->tab() && interstitial_page_->tab()->GetViewDelegate()) |
587 interstitial_page_->tab()->GetViewDelegate()->HandleMouseLeave(); | 587 interstitial_page_->tab()->GetViewDelegate()->HandleMouseLeave(); |
588 } | 588 } |
589 | 589 |
590 void InterstitialPage::InterstitialPageRVHViewDelegate::OnFindReply( | 590 void InterstitialPage::InterstitialPageRVHViewDelegate::OnFindReply( |
591 int request_id, int number_of_matches, const gfx::Rect& selection_rect, | 591 int request_id, int number_of_matches, const gfx::Rect& selection_rect, |
592 int active_match_ordinal, bool final_update) { | 592 int active_match_ordinal, bool final_update) { |
593 } | 593 } |
| 594 |
| 595 int InterstitialPage::GetBrowserWindowID() const { |
| 596 return tab_->GetBrowserWindowID(); |
| 597 } |
OLD | NEW |