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

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

Issue 2895413002: WebRuntimeFeatures moved to platform/ (Closed)
Patch Set: One more move Created 3 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
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/renderer/render_widget.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) 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 #include "content/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 #include "third_party/WebKit/public/platform/FilePathConversion.h" 114 #include "third_party/WebKit/public/platform/FilePathConversion.h"
115 #include "third_party/WebKit/public/platform/URLConversion.h" 115 #include "third_party/WebKit/public/platform/URLConversion.h"
116 #include "third_party/WebKit/public/platform/WebConnectionType.h" 116 #include "third_party/WebKit/public/platform/WebConnectionType.h"
117 #include "third_party/WebKit/public/platform/WebHTTPBody.h" 117 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
118 #include "third_party/WebKit/public/platform/WebImage.h" 118 #include "third_party/WebKit/public/platform/WebImage.h"
119 #include "third_party/WebKit/public/platform/WebInputEvent.h" 119 #include "third_party/WebKit/public/platform/WebInputEvent.h"
120 #include "third_party/WebKit/public/platform/WebInputEventResult.h" 120 #include "third_party/WebKit/public/platform/WebInputEventResult.h"
121 #include "third_party/WebKit/public/platform/WebMessagePortChannel.h" 121 #include "third_party/WebKit/public/platform/WebMessagePortChannel.h"
122 #include "third_party/WebKit/public/platform/WebPoint.h" 122 #include "third_party/WebKit/public/platform/WebPoint.h"
123 #include "third_party/WebKit/public/platform/WebRect.h" 123 #include "third_party/WebKit/public/platform/WebRect.h"
124 #include "third_party/WebKit/public/platform/WebRuntimeFeatures.h"
124 #include "third_party/WebKit/public/platform/WebSize.h" 125 #include "third_party/WebKit/public/platform/WebSize.h"
125 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" 126 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h"
126 #include "third_party/WebKit/public/platform/WebString.h" 127 #include "third_party/WebKit/public/platform/WebString.h"
127 #include "third_party/WebKit/public/platform/WebURL.h" 128 #include "third_party/WebKit/public/platform/WebURL.h"
128 #include "third_party/WebKit/public/platform/WebURLError.h" 129 #include "third_party/WebKit/public/platform/WebURLError.h"
129 #include "third_party/WebKit/public/platform/WebURLRequest.h" 130 #include "third_party/WebKit/public/platform/WebURLRequest.h"
130 #include "third_party/WebKit/public/platform/WebURLResponse.h" 131 #include "third_party/WebKit/public/platform/WebURLResponse.h"
131 #include "third_party/WebKit/public/platform/WebVector.h" 132 #include "third_party/WebKit/public/platform/WebVector.h"
132 #include "third_party/WebKit/public/public_features.h" 133 #include "third_party/WebKit/public/public_features.h"
133 #include "third_party/WebKit/public/web/WebAXObject.h" 134 #include "third_party/WebKit/public/web/WebAXObject.h"
(...skipping 16 matching lines...) Expand all
150 #include "third_party/WebKit/public/web/WebHitTestResult.h" 151 #include "third_party/WebKit/public/web/WebHitTestResult.h"
151 #include "third_party/WebKit/public/web/WebInputElement.h" 152 #include "third_party/WebKit/public/web/WebInputElement.h"
152 #include "third_party/WebKit/public/web/WebLocalFrame.h" 153 #include "third_party/WebKit/public/web/WebLocalFrame.h"
153 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h" 154 #include "third_party/WebKit/public/web/WebMediaPlayerAction.h"
154 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" 155 #include "third_party/WebKit/public/web/WebNavigationPolicy.h"
155 #include "third_party/WebKit/public/web/WebPageImportanceSignals.h" 156 #include "third_party/WebKit/public/web/WebPageImportanceSignals.h"
156 #include "third_party/WebKit/public/web/WebPlugin.h" 157 #include "third_party/WebKit/public/web/WebPlugin.h"
157 #include "third_party/WebKit/public/web/WebPluginAction.h" 158 #include "third_party/WebKit/public/web/WebPluginAction.h"
158 #include "third_party/WebKit/public/web/WebRange.h" 159 #include "third_party/WebKit/public/web/WebRange.h"
159 #include "third_party/WebKit/public/web/WebRenderTheme.h" 160 #include "third_party/WebKit/public/web/WebRenderTheme.h"
160 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
161 #include "third_party/WebKit/public/web/WebScriptSource.h" 161 #include "third_party/WebKit/public/web/WebScriptSource.h"
162 #include "third_party/WebKit/public/web/WebSearchableFormData.h" 162 #include "third_party/WebKit/public/web/WebSearchableFormData.h"
163 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" 163 #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
164 #include "third_party/WebKit/public/web/WebSettings.h" 164 #include "third_party/WebKit/public/web/WebSettings.h"
165 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h" 165 #include "third_party/WebKit/public/web/WebUserGestureIndicator.h"
166 #include "third_party/WebKit/public/web/WebView.h" 166 #include "third_party/WebKit/public/web/WebView.h"
167 #include "third_party/WebKit/public/web/WebWindowFeatures.h" 167 #include "third_party/WebKit/public/web/WebWindowFeatures.h"
168 #include "third_party/icu/source/common/unicode/uchar.h" 168 #include "third_party/icu/source/common/unicode/uchar.h"
169 #include "third_party/icu/source/common/unicode/uscript.h" 169 #include "third_party/icu/source/common/unicode/uscript.h"
170 #include "third_party/skia/include/core/SkColor.h" 170 #include "third_party/skia/include/core/SkColor.h"
(...skipping 2501 matching lines...) Expand 10 before | Expand all | Expand 10 after
2672 input_event.GetCoalescedEventsPointers(), latency_info, 2672 input_event.GetCoalescedEventsPointers(), latency_info,
2673 dispatch_type); 2673 dispatch_type);
2674 return INPUT_EVENT_ACK_STATE_NOT_CONSUMED; 2674 return INPUT_EVENT_ACK_STATE_NOT_CONSUMED;
2675 } 2675 }
2676 idle_user_detector_->ActivityDetected(); 2676 idle_user_detector_->ActivityDetected();
2677 return RenderWidget::HandleInputEvent(input_event, latency_info, 2677 return RenderWidget::HandleInputEvent(input_event, latency_info,
2678 dispatch_type); 2678 dispatch_type);
2679 } 2679 }
2680 2680
2681 } // namespace content 2681 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698