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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 10351002: ui: Move surface/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix gpu DEPS Created 8 years, 7 months 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
« no previous file with comments | « content/renderer/render_process_impl.cc ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 13 matching lines...) Expand all
24 #include "content/common/edit_command.h" 24 #include "content/common/edit_command.h"
25 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" 25 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
26 #include "content/common/navigation_gesture.h" 26 #include "content/common/navigation_gesture.h"
27 #include "content/common/view_message_enums.h" 27 #include "content/common/view_message_enums.h"
28 #include "content/public/common/page_zoom.h" 28 #include "content/public/common/page_zoom.h"
29 #include "content/public/common/referrer.h" 29 #include "content/public/common/referrer.h"
30 #include "content/public/common/renderer_preferences.h" 30 #include "content/public/common/renderer_preferences.h"
31 #include "content/public/common/stop_find_action.h" 31 #include "content/public/common/stop_find_action.h"
32 #include "content/public/renderer/render_view.h" 32 #include "content/public/renderer/render_view.h"
33 #include "content/renderer/pepper/pepper_plugin_delegate_impl.h" 33 #include "content/renderer/pepper/pepper_plugin_delegate_impl.h"
34 #include "content/renderer/renderer_webcookiejar_impl.h"
35 #include "content/renderer/render_view_selection.h" 34 #include "content/renderer/render_view_selection.h"
36 #include "content/renderer/render_widget.h" 35 #include "content/renderer/render_widget.h"
36 #include "content/renderer/renderer_webcookiejar_impl.h"
37 #include "ipc/ipc_platform_file.h" 37 #include "ipc/ipc_platform_file.h"
38 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste m.h"
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h" 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebConsoleMessage.h"
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h" 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h"
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h" 41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIconURL.h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h"
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h"
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie nt.h" 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageSerializerClie nt.h"
45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat e.h" 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPageVisibilityStat e.h"
46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" 46 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h"
47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h" 47 #include "third_party/WebKit/Source/WebKit/chromium/public/WebViewClient.h"
48 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationType.h" 48 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSyste m.h"
49 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC ontext3D.h" 49 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebGraphicsC ontext3D.h"
50 #include "ui/base/javascript_message_type.h" 50 #include "ui/base/javascript_message_type.h"
51 #include "ui/gfx/surface/transport_dib.h" 51 #include "ui/surface/transport_dib.h"
52 #include "webkit/glue/webpreferences.h" 52 #include "webkit/glue/webpreferences.h"
53 #include "webkit/media/webmediaplayer_delegate.h" 53 #include "webkit/media/webmediaplayer_delegate.h"
54 #include "webkit/plugins/npapi/webplugin_page_delegate.h" 54 #include "webkit/plugins/npapi/webplugin_page_delegate.h"
55 55
56 #if defined(COMPILER_MSVC) 56 #if defined(COMPILER_MSVC)
57 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the 57 // RenderViewImpl is a diamond-shaped hierarchy, with WebWidgetClient at the
58 // root. VS warns when we inherit the WebWidgetClient method implementations 58 // root. VS warns when we inherit the WebWidgetClient method implementations
59 // from RenderWidget. It's safe to ignore that warning. 59 // from RenderWidget. It's safe to ignore that warning.
60 #pragma warning(disable: 4250) 60 #pragma warning(disable: 4250)
61 #endif 61 #endif
(...skipping 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after
1343 // bunch of stuff, you should probably create a helper class and put your 1343 // bunch of stuff, you should probably create a helper class and put your
1344 // data and methods on that to avoid bloating RenderView more. You can 1344 // data and methods on that to avoid bloating RenderView more. You can
1345 // use the Observer interface to filter IPC messages and receive frame change 1345 // use the Observer interface to filter IPC messages and receive frame change
1346 // notifications. 1346 // notifications.
1347 // --------------------------------------------------------------------------- 1347 // ---------------------------------------------------------------------------
1348 1348
1349 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1349 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1350 }; 1350 };
1351 1351
1352 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1352 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_process_impl.cc ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698