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

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

Issue 2639273002: Give WebTouchEvent and WebKeyboardEvent their own headers (Closed)
Patch Set: Rebase Created 3 years, 11 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_frame_impl.h" 5 #include "content/renderer/render_frame_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 #include "net/http/http_util.h" 164 #include "net/http/http_util.h"
165 #include "ppapi/features/features.h" 165 #include "ppapi/features/features.h"
166 #include "services/service_manager/public/cpp/interface_provider.h" 166 #include "services/service_manager/public/cpp/interface_provider.h"
167 #include "services/service_manager/public/cpp/interface_registry.h" 167 #include "services/service_manager/public/cpp/interface_registry.h"
168 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h" 168 #include "services/ui/public/cpp/gpu/context_provider_command_buffer.h"
169 #include "storage/common/data_element.h" 169 #include "storage/common/data_element.h"
170 #include "third_party/WebKit/public/platform/FilePathConversion.h" 170 #include "third_party/WebKit/public/platform/FilePathConversion.h"
171 #include "third_party/WebKit/public/platform/URLConversion.h" 171 #include "third_party/WebKit/public/platform/URLConversion.h"
172 #include "third_party/WebKit/public/platform/WebCachePolicy.h" 172 #include "third_party/WebKit/public/platform/WebCachePolicy.h"
173 #include "third_party/WebKit/public/platform/WebData.h" 173 #include "third_party/WebKit/public/platform/WebData.h"
174 #include "third_party/WebKit/public/platform/WebKeyboardEvent.h"
174 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" 175 #include "third_party/WebKit/public/platform/WebMediaPlayer.h"
175 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h" 176 #include "third_party/WebKit/public/platform/WebMediaPlayerSource.h"
176 #include "third_party/WebKit/public/platform/WebPoint.h" 177 #include "third_party/WebKit/public/platform/WebPoint.h"
177 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" 178 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h"
178 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h" 179 #include "third_party/WebKit/public/platform/WebStorageQuotaCallbacks.h"
179 #include "third_party/WebKit/public/platform/WebString.h" 180 #include "third_party/WebKit/public/platform/WebString.h"
180 #include "third_party/WebKit/public/platform/WebURL.h" 181 #include "third_party/WebKit/public/platform/WebURL.h"
181 #include "third_party/WebKit/public/platform/WebURLError.h" 182 #include "third_party/WebKit/public/platform/WebURLError.h"
182 #include "third_party/WebKit/public/platform/WebURLResponse.h" 183 #include "third_party/WebKit/public/platform/WebURLResponse.h"
183 #include "third_party/WebKit/public/platform/WebVector.h" 184 #include "third_party/WebKit/public/platform/WebVector.h"
(...skipping 6682 matching lines...) Expand 10 before | Expand all | Expand 10 after
6866 // event target. Potentially a Pepper plugin will receive the event. 6867 // event target. Potentially a Pepper plugin will receive the event.
6867 // In order to tell whether a plugin gets the last mouse event and which it 6868 // In order to tell whether a plugin gets the last mouse event and which it
6868 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets 6869 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets
6869 // the event, it will notify us via DidReceiveMouseEvent() and set itself as 6870 // the event, it will notify us via DidReceiveMouseEvent() and set itself as
6870 // |pepper_last_mouse_event_target_|. 6871 // |pepper_last_mouse_event_target_|.
6871 pepper_last_mouse_event_target_ = nullptr; 6872 pepper_last_mouse_event_target_ = nullptr;
6872 #endif 6873 #endif
6873 } 6874 }
6874 6875
6875 } // namespace content 6876 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698