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

Unified Diff: content/renderer/render_view.cc

Issue 6880275: Web Introducer overview Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_view.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view.cc
===================================================================
--- content/renderer/render_view.cc (revision 79632)
+++ content/renderer/render_view.cc (working copy)
@@ -87,6 +87,7 @@
#include "content/renderer/external_popup_menu.h"
#include "content/renderer/geolocation_dispatcher.h"
#include "content/renderer/ggl.h"
+#include "content/renderer/introducer_dispatcher.h"
#include "content/renderer/load_progress_tracker.h"
#include "content/renderer/media/audio_renderer_impl.h"
#include "content/renderer/media/ipc_video_decoder.h"
@@ -579,6 +580,8 @@
decrement_shared_popup_at_destruction_ = false;
}
+ introducer_dispatcher_ = makeIntroducerDispatcher(this);
+
notification_provider_ = new NotificationProvider(this);
devtools_agent_ = new DevToolsAgent(this);
@@ -2080,6 +2083,10 @@
print_helper_->ScriptInitiatedPrint(frame);
}
+WebKit::WebIntroducer* RenderView::introducerDispatcher() {
+ return introducer_dispatcher_;
+}
+
WebKit::WebNotificationPresenter* RenderView::notificationPresenter() {
return notification_provider_;
}
« no previous file with comments | « content/renderer/render_view.h ('k') | ipc/ipc_message_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698