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

Side by Side Diff: content/renderer/render_widget.cc

Issue 8277018: Move content_switches to content\public\common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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_view_impl.cc ('k') | content/renderer/renderer_accessibility.cc » ('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) 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 #include "content/renderer/render_widget.h" 5 #include "content/renderer/render_widget.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/debug/trace_event.h" 8 #include "base/debug/trace_event.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/message_loop.h" 11 #include "base/message_loop.h"
12 #include "base/metrics/histogram.h" 12 #include "base/metrics/histogram.h"
13 #include "base/utf_string_conversions.h" 13 #include "base/utf_string_conversions.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "content/common/content_switches.h"
16 #include "content/common/swapped_out_messages.h" 15 #include "content/common/swapped_out_messages.h"
17 #include "content/common/view_messages.h" 16 #include "content/common/view_messages.h"
17 #include "content/public/common/content_switches.h"
18 #include "content/renderer/gpu/compositor_thread.h" 18 #include "content/renderer/gpu/compositor_thread.h"
19 #include "content/renderer/render_process.h" 19 #include "content/renderer/render_process.h"
20 #include "content/renderer/render_thread_impl.h" 20 #include "content/renderer/render_thread_impl.h"
21 #include "content/renderer/renderer_webkitplatformsupport_impl.h" 21 #include "content/renderer/renderer_webkitplatformsupport_impl.h"
22 #include "ipc/ipc_sync_message.h" 22 #include "ipc/ipc_sync_message.h"
23 #include "skia/ext/platform_canvas.h" 23 #include "skia/ext/platform_canvas.h"
24 #include "third_party/skia/include/core/SkShader.h" 24 #include "third_party/skia/include/core/SkShader.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h" 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenu.h"
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h" 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupMenuInfo.h"
(...skipping 1384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 } 1412 }
1413 } 1413 }
1414 1414
1415 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) { 1415 bool RenderWidget::WillHandleMouseEvent(const WebKit::WebMouseEvent& event) {
1416 return false; 1416 return false;
1417 } 1417 }
1418 1418
1419 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const { 1419 bool RenderWidget::WebWidgetHandlesCompositorScheduling() const {
1420 return false; 1420 return false;
1421 } 1421 }
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/renderer/renderer_accessibility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698