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

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

Issue 8342048: Make NotificationService an interface in the content namespace, and switch callers to use it. Mov... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | Annotate | Revision Log
OLDNEW
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"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/threading/thread.h" 12 #include "base/threading/thread.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "content/browser/browser_thread.h" 14 #include "content/browser/browser_thread.h"
15 #include "content/browser/renderer_host/render_process_host.h" 15 #include "content/browser/renderer_host/render_process_host.h"
16 #include "content/browser/renderer_host/render_view_host.h" 16 #include "content/browser/renderer_host/render_view_host.h"
17 #include "content/browser/renderer_host/render_widget_host_view.h" 17 #include "content/browser/renderer_host/render_widget_host_view.h"
18 #include "content/browser/renderer_host/resource_dispatcher_host.h" 18 #include "content/browser/renderer_host/resource_dispatcher_host.h"
19 #include "content/browser/site_instance.h" 19 #include "content/browser/site_instance.h"
20 #include "content/browser/tab_contents/navigation_controller.h" 20 #include "content/browser/tab_contents/navigation_controller.h"
21 #include "content/browser/tab_contents/navigation_entry.h" 21 #include "content/browser/tab_contents/navigation_entry.h"
22 #include "content/browser/tab_contents/tab_contents.h" 22 #include "content/browser/tab_contents/tab_contents.h"
23 #include "content/browser/tab_contents/tab_contents_view.h" 23 #include "content/browser/tab_contents/tab_contents_view.h"
24 #include "content/common/dom_storage_common.h" 24 #include "content/common/dom_storage_common.h"
25 #include "content/common/notification_service.h" 25 #include "content/public/browser/notification_service.h"
26 #include "content/common/view_messages.h" 26 #include "content/common/view_messages.h"
27 #include "content/public/browser/content_browser_client.h" 27 #include "content/public/browser/content_browser_client.h"
28 #include "content/public/browser/notification_source.h" 28 #include "content/public/browser/notification_source.h"
29 #include "content/public/common/bindings_policy.h" 29 #include "content/public/common/bindings_policy.h"
30 #include "content/public/common/page_transition_types.h" 30 #include "content/public/common/page_transition_types.h"
31 #include "content/public/common/view_types.h" 31 #include "content/public/common/view_types.h"
32 #include "net/base/escape.h" 32 #include "net/base/escape.h"
33 #include "net/url_request/url_request_context_getter.h" 33 #include "net/url_request/url_request_context_getter.h"
34 34
35 using WebKit::WebDragOperation; 35 using WebKit::WebDragOperation;
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 } 341 }
342 342
343 // The RenderViewHost has loaded its contents, we can show it now. 343 // The RenderViewHost has loaded its contents, we can show it now.
344 render_view_host_->view()->Show(); 344 render_view_host_->view()->Show();
345 tab_->set_interstitial_page(this); 345 tab_->set_interstitial_page(this);
346 346
347 // This notification hides the bookmark bar. Note that this has to happen 347 // This notification hides the bookmark bar. Note that this has to happen
348 // after the interstitial page was registered with |tab_|, since there will be 348 // after the interstitial page was registered with |tab_|, since there will be
349 // a callback to |tab_| testing if an interstitial page is showing before 349 // a callback to |tab_| testing if an interstitial page is showing before
350 // hiding the bookmark bar. 350 // hiding the bookmark bar.
351 NotificationService::current()->Notify( 351 content::NotificationService::current()->Notify(
352 content::NOTIFICATION_INTERSTITIAL_ATTACHED, 352 content::NOTIFICATION_INTERSTITIAL_ATTACHED,
353 content::Source<TabContents>(tab_), 353 content::Source<TabContents>(tab_),
354 NotificationService::NoDetails()); 354 content::NotificationService::NoDetails());
355 355
356 RenderWidgetHostView* rwh_view = tab_->render_view_host()->view(); 356 RenderWidgetHostView* rwh_view = tab_->render_view_host()->view();
357 357
358 // The RenderViewHost may already have crashed before we even get here. 358 // The RenderViewHost may already have crashed before we even get here.
359 if (rwh_view) { 359 if (rwh_view) {
360 // If the page has focus, focus the interstitial. 360 // If the page has focus, focus the interstitial.
361 if (rwh_view->HasFocus()) 361 if (rwh_view->HasFocus())
362 Focus(); 362 Focus();
363 363
364 // Hide the original RVH since we're showing the interstitial instead. 364 // Hide the original RVH since we're showing the interstitial instead.
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 void InterstitialPage::InterstitialPageRVHViewDelegate::TakeFocus( 657 void InterstitialPage::InterstitialPageRVHViewDelegate::TakeFocus(
658 bool reverse) { 658 bool reverse) {
659 if (interstitial_page_->tab() && interstitial_page_->tab()->GetViewDelegate()) 659 if (interstitial_page_->tab() && interstitial_page_->tab()->GetViewDelegate())
660 interstitial_page_->tab()->GetViewDelegate()->TakeFocus(reverse); 660 interstitial_page_->tab()->GetViewDelegate()->TakeFocus(reverse);
661 } 661 }
662 662
663 void InterstitialPage::InterstitialPageRVHViewDelegate::OnFindReply( 663 void InterstitialPage::InterstitialPageRVHViewDelegate::OnFindReply(
664 int request_id, int number_of_matches, const gfx::Rect& selection_rect, 664 int request_id, int number_of_matches, const gfx::Rect& selection_rect,
665 int active_match_ordinal, bool final_update) { 665 int active_match_ordinal, bool final_update) {
666 } 666 }
OLDNEW
« no previous file with comments | « content/browser/ssl/ssl_manager.cc ('k') | content/browser/tab_contents/navigation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698