Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: chrome/browser/tab_contents/interstitial_page.cc

Issue 164458: Land http://codereview.chromium.org/159067: (Closed)
Patch Set: undo docs Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/interstitial_page.h ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698