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

Side by Side Diff: content/browser/android/content_view_core_impl.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 6 #define CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 12 matching lines...) Expand all
23 #include "content/public/browser/android/content_view_core.h" 23 #include "content/public/browser/android/content_view_core.h"
24 #include "content/public/browser/web_contents_observer.h" 24 #include "content/public/browser/web_contents_observer.h"
25 #include "third_party/WebKit/public/web/WebInputEvent.h" 25 #include "third_party/WebKit/public/web/WebInputEvent.h"
26 #include "ui/android/overscroll_refresh.h" 26 #include "ui/android/overscroll_refresh.h"
27 #include "ui/android/view_android.h" 27 #include "ui/android/view_android.h"
28 #include "ui/gfx/geometry/rect.h" 28 #include "ui/gfx/geometry/rect.h"
29 #include "ui/gfx/geometry/rect_f.h" 29 #include "ui/gfx/geometry/rect_f.h"
30 #include "ui/gfx/selection_bound.h" 30 #include "ui/gfx/selection_bound.h"
31 #include "url/gurl.h" 31 #include "url/gurl.h"
32 32
33 namespace cc {
34 struct ViewportSelectionBound;
35 }
36
37 namespace ui { 33 namespace ui {
38 class WindowAndroid; 34 class WindowAndroid;
39 } 35 }
40 36
41 namespace content { 37 namespace content {
42 38
43 class GinJavaBridgeDispatcherHost; 39 class GinJavaBridgeDispatcherHost;
44 class RenderFrameHost; 40 class RenderFrameHost;
45 class RenderWidgetHostViewAndroid; 41 class RenderWidgetHostViewAndroid;
46 struct MenuItem; 42 struct MenuItem;
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_; 459 scoped_refptr<GinJavaBridgeDispatcherHost> java_bridge_dispatcher_host_;
464 460
465 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl); 461 DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
466 }; 462 };
467 463
468 bool RegisterContentViewCore(JNIEnv* env); 464 bool RegisterContentViewCore(JNIEnv* env);
469 465
470 } // namespace content 466 } // namespace content
471 467
472 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_ 468 #endif // CONTENT_BROWSER_ANDROID_CONTENT_VIEW_CORE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698