diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-24 17:17:45 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-24 17:17:45 +0000 |
commit | 706f2dcd21c3628dfdda1448235fb4b46c1bab39 (patch) | |
tree | 8775eecc3423aea3813b6f1263c48af8a5f97ff5 /chrome | |
parent | cf62075e20a12d43c9a9de07411f4c0c1f47336d (diff) | |
download | chromium_src-706f2dcd21c3628dfdda1448235fb4b46c1bab39.zip chromium_src-706f2dcd21c3628dfdda1448235fb4b46c1bab39.tar.gz chromium_src-706f2dcd21c3628dfdda1448235fb4b46c1bab39.tar.bz2 |
Chrome side of using WebPluginListBuilder.
I also broke glue/webplugininfo.h out of glue/webplugin.h as part of this
change. Eventually, glue/webplugin.h will go away and be moved into the WebKit
API, but the structures left in glue/webplugininfo.h need to remain since they
are used extensively throughout Chrome.
BUG=10922
R=dglazkov
Review URL: http://codereview.chromium.org/93116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/metrics/metrics_log.h | 2 | ||||
-rw-r--r-- | chrome/browser/plugin_process_host.h | 2 | ||||
-rw-r--r-- | chrome/browser/plugin_service.h | 3 | ||||
-rw-r--r-- | chrome/browser/renderer_host/resource_message_filter.cc | 2 | ||||
-rw-r--r-- | chrome/common/render_messages.h | 1 |
5 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/metrics/metrics_log.h b/chrome/browser/metrics/metrics_log.h index fc0eb7a..a243ce1 100644 --- a/chrome/browser/metrics/metrics_log.h +++ b/chrome/browser/metrics/metrics_log.h @@ -17,7 +17,7 @@ #include "base/histogram.h" #include "base/time.h" #include "chrome/common/page_transition_types.h" -#include "webkit/glue/webplugin.h" +#include "webkit/glue/webplugininfo.h" struct AutocompleteLog; class DictionaryValue; diff --git a/chrome/browser/plugin_process_host.h b/chrome/browser/plugin_process_host.h index a326bee..46d5e74 100644 --- a/chrome/browser/plugin_process_host.h +++ b/chrome/browser/plugin_process_host.h @@ -18,7 +18,7 @@ #include "chrome/browser/net/resolve_proxy_msg_helper.h" #include "chrome/browser/renderer_host/resource_message_filter.h" #include "chrome/common/child_process_host.h" -#include "webkit/glue/webplugin.h" +#include "webkit/glue/webplugininfo.h" class URLRequestContext; struct ViewHostMsg_Resource_Request; diff --git a/chrome/browser/plugin_service.h b/chrome/browser/plugin_service.h index 3c8adae..883953c 100644 --- a/chrome/browser/plugin_service.h +++ b/chrome/browser/plugin_service.h @@ -17,7 +17,7 @@ #include "base/singleton.h" #include "base/waitable_event_watcher.h" #include "chrome/browser/browser_process.h" -#include "webkit/glue/webplugin.h" +#include "webkit/glue/webplugininfo.h" #if defined(OS_WIN) #include "base/registry.h" @@ -27,6 +27,7 @@ namespace IPC { class Message; } +class GURL; class MessageLoop; class PluginProcessHost; class URLRequestContext; diff --git a/chrome/browser/renderer_host/resource_message_filter.cc b/chrome/browser/renderer_host/resource_message_filter.cc index b528819..aee7604 100644 --- a/chrome/browser/renderer_host/resource_message_filter.cc +++ b/chrome/browser/renderer_host/resource_message_filter.cc @@ -765,7 +765,7 @@ void ResourceMessageFilter::OnSpellCheck(const std::wstring& word, } ViewHostMsg_SpellCheck::WriteReplyParams(reply_msg, misspell_location, - misspell_length); + misspell_length); Send(reply_msg); return; } diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index 624dc0b..f711cf6 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -36,6 +36,7 @@ #include "webkit/glue/webappcachecontext.h" #include "webkit/glue/webdropdata.h" #include "webkit/glue/webplugin.h" +#include "webkit/glue/webplugininfo.h" #include "webkit/glue/webpreferences.h" #include "webkit/glue/webview_delegate.h" |