diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-05 22:47:10 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-05 22:47:10 +0000 |
commit | a60551c712b36d6241c234cd81ae2a847f323ec5 (patch) | |
tree | ff5f9f239fd0dc3b58d2905bcabea14207cb737c /chrome/browser | |
parent | 2761ff93c55cc556f1ddc35bca023442bbc3ab00 (diff) | |
download | chromium_src-a60551c712b36d6241c234cd81ae2a847f323ec5.zip chromium_src-a60551c712b36d6241c234cd81ae2a847f323ec5.tar.gz chromium_src-a60551c712b36d6241c234cd81ae2a847f323ec5.tar.bz2 |
Cleanup some forward declared structs that are not being used.
Also do some lint removal while I'm at it.
Review URL: http://codereview.chromium.org/20107
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9269 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/renderer_host/render_view_host.h | 4 | ||||
-rw-r--r-- | chrome/browser/renderer_host/render_widget_host.h | 1 | ||||
-rw-r--r-- | chrome/browser/tab_contents/web_contents_view.h | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/chrome/browser/renderer_host/render_view_host.h b/chrome/browser/renderer_host/render_view_host.h index 4e4a638..2cd9d29 100644 --- a/chrome/browser/renderer_host/render_view_host.h +++ b/chrome/browser/renderer_host/render_view_host.h @@ -30,8 +30,6 @@ class ViewMsg_Navigate; struct ContextMenuParams; struct ViewHostMsg_DidPrintPage_Params; struct ViewMsg_Navigate_Params; -struct ViewMsg_Print_Params; -struct ViewMsg_PrintPages_Params; struct WebDropData; struct WebPreferences; @@ -379,7 +377,7 @@ class RenderViewHost : public RenderWidgetHost { void UnloadListenerHasFired() { has_unload_listener_ = false; } #ifdef CHROME_PERSONALIZATION - // Tells the RenderView to raise an personalization event with the given name + // Tells the RenderView to raise an personalization event with the given name // and argument. void RaisePersonalizationEvent(std::string event_name, std::string event_arg); diff --git a/chrome/browser/renderer_host/render_widget_host.h b/chrome/browser/renderer_host/render_widget_host.h index 06b9fb0..4bd1849 100644 --- a/chrome/browser/renderer_host/render_widget_host.h +++ b/chrome/browser/renderer_host/render_widget_host.h @@ -28,7 +28,6 @@ class WebMouseWheelEvent; class WebCursor; struct ViewHostMsg_PaintRect_Params; struct ViewHostMsg_ScrollRect_Params; -struct WebPluginGeometry; // This class manages the browser side of a browser<->renderer HWND connection. // The HWND lives in the browser process, and windows events are sent over diff --git a/chrome/browser/tab_contents/web_contents_view.h b/chrome/browser/tab_contents/web_contents_view.h index 32246e7..7c8a4e0 100644 --- a/chrome/browser/tab_contents/web_contents_view.h +++ b/chrome/browser/tab_contents/web_contents_view.h @@ -19,7 +19,6 @@ class RenderViewHost; class RenderWidgetHost; class RenderWidgetHostView; class WebContents; -struct WebDropData; class WebKeyboardEvent; namespace base { |