OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/browser/tab_contents/interstitial_page.h" | 5 #include "content/browser/tab_contents/interstitial_page.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
712 } | 712 } |
713 | 713 |
714 void InterstitialPage::InterstitialPageRVHViewDelegate::HandleMouseActivate() { | 714 void InterstitialPage::InterstitialPageRVHViewDelegate::HandleMouseActivate() { |
715 } | 715 } |
716 | 716 |
717 void InterstitialPage::InterstitialPageRVHViewDelegate::OnFindReply( | 717 void InterstitialPage::InterstitialPageRVHViewDelegate::OnFindReply( |
718 int request_id, int number_of_matches, const gfx::Rect& selection_rect, | 718 int request_id, int number_of_matches, const gfx::Rect& selection_rect, |
719 int active_match_ordinal, bool final_update) { | 719 int active_match_ordinal, bool final_update) { |
720 } | 720 } |
721 | 721 |
722 int InterstitialPage::GetBrowserWindowID() const { | |
Matt Perry
2011/06/08 18:18:42
does the InterstitialPage need to send the UpdateB
jam
2011/06/08 18:30:08
based on inspection, it didn't seem that this matt
| |
723 return tab_->GetBrowserWindowID(); | |
724 } | |
725 | |
726 void InterstitialPage::UpdateInspectorSetting(const std::string& key, | 722 void InterstitialPage::UpdateInspectorSetting(const std::string& key, |
727 const std::string& value) { | 723 const std::string& value) { |
728 RenderViewHostDelegateHelper::UpdateInspectorSetting( | 724 RenderViewHostDelegateHelper::UpdateInspectorSetting( |
729 tab_->profile(), key, value); | 725 tab_->profile(), key, value); |
730 } | 726 } |
731 | 727 |
732 void InterstitialPage::ClearInspectorSettings() { | 728 void InterstitialPage::ClearInspectorSettings() { |
733 RenderViewHostDelegateHelper::ClearInspectorSettings(tab_->profile()); | 729 RenderViewHostDelegateHelper::ClearInspectorSettings(tab_->profile()); |
734 } | 730 } |
OLD | NEW |