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

Side by Side Diff: chrome/browser/renderer_host/render_widget_host_view_views.h

Issue 8539006: Cleanup: Remove unneeded forward declarations from various chrome/browser subdirectories. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 21 matching lines...) Expand all
32 namespace ui { 32 namespace ui {
33 enum TouchStatus; 33 enum TouchStatus;
34 } 34 }
35 #endif 35 #endif
36 36
37 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 37 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
38 class AcceleratedSurfaceContainerLinux; 38 class AcceleratedSurfaceContainerLinux;
39 #endif 39 #endif
40 40
41 class RenderWidgetHost; 41 class RenderWidgetHost;
42 struct NativeWebKeyboardEvent;
43 42
44 // ----------------------------------------------------------------------------- 43 // -----------------------------------------------------------------------------
45 // See comments in render_widget_host_view.h about this class and its members. 44 // See comments in render_widget_host_view.h about this class and its members.
46 // ----------------------------------------------------------------------------- 45 // -----------------------------------------------------------------------------
47 class RenderWidgetHostViewViews : public RenderWidgetHostView, 46 class RenderWidgetHostViewViews : public RenderWidgetHostView,
48 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 47 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
49 public ui::CompositorObserver, 48 public ui::CompositorObserver,
50 #endif 49 #endif
51 public views::TouchSelectionClientView, 50 public views::TouchSelectionClientView,
52 public ui::TextInputClient, 51 public ui::TextInputClient,
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 311
313 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 312 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
314 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > 313 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> >
315 accelerated_surface_containers_; 314 accelerated_surface_containers_;
316 #endif 315 #endif
317 316
318 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); 317 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews);
319 }; 318 };
320 319
321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ 320 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/offline_resource_handler.h ('k') | chrome/browser/safe_browsing/download_protection_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698