diff options
author | gbillock@chromium.org <gbillock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-21 20:26:00 +0000 |
---|---|---|
committer | gbillock@chromium.org <gbillock@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-21 20:26:00 +0000 |
commit | 0d9989d93967a155220c08d7ffe2687a4d3f00ae (patch) | |
tree | c8031b951248324e352a0feeda171c562577e9d5 /content/renderer/render_view_impl.h | |
parent | 757a8eb4c023fc3b9c6cc59be0005a9bf12c438e (diff) | |
download | chromium_src-0d9989d93967a155220c08d7ffe2687a4d3f00ae.zip chromium_src-0d9989d93967a155220c08d7ffe2687a4d3f00ae.tar.gz chromium_src-0d9989d93967a155220c08d7ffe2687a4d3f00ae.tar.bz2 |
Rename IntentsHost -> WebIntentsDispatcher and IntentsDispatcher -> WebIntentsHost.
R=jhawkins@chromium.org,jam@chromium.org
BUG=104980
TEST=WebIntentPickerControllerBrowsertest
Review URL: http://codereview.chromium.org/8934011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/render_view_impl.h')
-rw-r--r-- | content/renderer/render_view_impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h index 4e7c94c..22a555f 100644 --- a/content/renderer/render_view_impl.h +++ b/content/renderer/render_view_impl.h @@ -62,7 +62,6 @@ class DevToolsAgent; class ExternalPopupMenu; class GeolocationDispatcher; class GURL; -class IntentsDispatcher; class JavaBridgeDispatcher; class LoadProgressTracker; class MediaStreamImpl; @@ -77,6 +76,7 @@ struct ViewMsg_Navigate_Params; struct ViewMsg_StopFinding_Params; struct ViewMsg_SwapOut_Params; struct WebDropData; +class WebIntentsHost; class WebPluginDelegateProxy; class WebUIBindings; @@ -1117,8 +1117,8 @@ class RenderViewImpl : public RenderWidget, // The geolocation dispatcher attached to this view, lazily initialized. GeolocationDispatcher* geolocation_dispatcher_; - // The intents dispatcher attached to this view. Not lazily initialized. - IntentsDispatcher* intents_dispatcher_; + // The intents host attached to this view. Not lazily initialized. + WebIntentsHost* intents_host_; // The speech dispatcher attached to this view, lazily initialized. SpeechInputDispatcher* speech_input_dispatcher_; |