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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_base.h

Issue 2473003002: content: Cleanup class/struct forward declarations (Closed)
Patch Set: Another missing forward declaration Created 4 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 24 matching lines...) Expand all
35 #include "ui/base/ime/text_input_mode.h" 35 #include "ui/base/ime/text_input_mode.h"
36 #include "ui/base/ime/text_input_type.h" 36 #include "ui/base/ime/text_input_type.h"
37 #include "ui/display/display.h" 37 #include "ui/display/display.h"
38 #include "ui/gfx/geometry/rect.h" 38 #include "ui/gfx/geometry/rect.h"
39 #include "ui/gfx/native_widget_types.h" 39 #include "ui/gfx/native_widget_types.h"
40 #include "ui/gfx/range/range.h" 40 #include "ui/gfx/range/range.h"
41 #include "ui/surface/transport_dib.h" 41 #include "ui/surface/transport_dib.h"
42 42
43 class SkBitmap; 43 class SkBitmap;
44 44
45 struct AccessibilityHostMsg_EventParams;
46 struct ViewHostMsg_SelectionBounds_Params; 45 struct ViewHostMsg_SelectionBounds_Params;
47 46
48 namespace media { 47 namespace media {
49 class VideoFrame; 48 class VideoFrame;
50 } 49 }
51 50
52 namespace blink { 51 namespace blink {
53 class WebMouseEvent; 52 class WebMouseEvent;
54 class WebMouseWheelEvent; 53 class WebMouseWheelEvent;
55 } 54 }
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; 499 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_;
501 500
502 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; 501 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_;
503 502
504 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); 503 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase);
505 }; 504 };
506 505
507 } // namespace content 506 } // namespace content
508 507
509 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 508 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698