Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 402 virtual void startDragging(blink::WebLocalFrame* frame, | 402 virtual void startDragging(blink::WebLocalFrame* frame, |
| 403 const blink::WebDragData& data, | 403 const blink::WebDragData& data, |
| 404 blink::WebDragOperationsMask mask, | 404 blink::WebDragOperationsMask mask, |
| 405 const blink::WebImage& image, | 405 const blink::WebImage& image, |
| 406 const blink::WebPoint& imageOffset); | 406 const blink::WebPoint& imageOffset); |
| 407 virtual bool acceptsLoadDrops(); | 407 virtual bool acceptsLoadDrops(); |
| 408 virtual void focusNext(); | 408 virtual void focusNext(); |
| 409 virtual void focusPrevious(); | 409 virtual void focusPrevious(); |
| 410 virtual void focusedNodeChanged(const blink::WebNode& node); | 410 virtual void focusedNodeChanged(const blink::WebNode& node); |
| 411 virtual void didUpdateLayout(); | 411 virtual void didUpdateLayout(); |
| 412 #if defined(OS_ANDROID) | 412 #if defined(OS_ANDROID) || defined(OS_WIN) |
|
sky
2014/08/04 20:05:20
OS_WIN->TOOLKIT_VIEWS
luken
2014/09/11 01:07:28
Done.
| |
| 413 virtual bool didTapMultipleTargets( | 413 virtual bool didTapMultipleTargets( |
| 414 const blink::WebGestureEvent& event, | 414 const blink::WebGestureEvent& event, |
| 415 const blink::WebVector<blink::WebRect>& target_rects); | 415 const blink::WebVector<blink::WebRect>& target_rects); |
| 416 #endif | 416 #endif |
| 417 virtual blink::WebString acceptLanguages(); | 417 virtual blink::WebString acceptLanguages(); |
| 418 virtual void navigateBackForwardSoon(int offset); | 418 virtual void navigateBackForwardSoon(int offset); |
| 419 virtual int historyBackListCount(); | 419 virtual int historyBackListCount(); |
| 420 virtual int historyForwardListCount(); | 420 virtual int historyForwardListCount(); |
| 421 virtual void postAccessibilityEvent( | 421 virtual void postAccessibilityEvent( |
| 422 const blink::WebAXObject& obj, blink::WebAXEvent event); | 422 const blink::WebAXObject& obj, blink::WebAXEvent event); |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1144 // use the Observer interface to filter IPC messages and receive frame change | 1144 // use the Observer interface to filter IPC messages and receive frame change |
| 1145 // notifications. | 1145 // notifications. |
| 1146 // --------------------------------------------------------------------------- | 1146 // --------------------------------------------------------------------------- |
| 1147 | 1147 |
| 1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1148 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1149 }; | 1149 }; |
| 1150 | 1150 |
| 1151 } // namespace content | 1151 } // namespace content |
| 1152 | 1152 |
| 1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1153 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |