| OLD | NEW |
| 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 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 blink::WebEncryptedMediaClient* encryptedMediaClient() override; | 584 blink::WebEncryptedMediaClient* encryptedMediaClient() override; |
| 585 blink::WebMIDIClient* webMIDIClient() override; | 585 blink::WebMIDIClient* webMIDIClient() override; |
| 586 bool willCheckAndDispatchMessageEvent( | 586 bool willCheckAndDispatchMessageEvent( |
| 587 blink::WebLocalFrame* source_frame, | 587 blink::WebLocalFrame* source_frame, |
| 588 blink::WebFrame* target_frame, | 588 blink::WebFrame* target_frame, |
| 589 blink::WebSecurityOrigin target_origin, | 589 blink::WebSecurityOrigin target_origin, |
| 590 blink::WebDOMMessageEvent event) override; | 590 blink::WebDOMMessageEvent event) override; |
| 591 blink::WebString userAgentOverride() override; | 591 blink::WebString userAgentOverride() override; |
| 592 blink::WebString doNotTrackValue() override; | 592 blink::WebString doNotTrackValue() override; |
| 593 bool allowWebGL(bool default_value) override; | 593 bool allowWebGL(bool default_value) override; |
| 594 void didLoseWebGLContext(int arb_robustness_status_code) override; | |
| 595 blink::WebScreenOrientationClient* webScreenOrientationClient() override; | 594 blink::WebScreenOrientationClient* webScreenOrientationClient() override; |
| 596 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; | 595 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; |
| 597 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; | 596 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; |
| 598 void postAccessibilityEvent(const blink::WebAXObject& obj, | 597 void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 599 blink::WebAXEvent event) override; | 598 blink::WebAXEvent event) override; |
| 600 void handleAccessibilityFindInPageResult( | 599 void handleAccessibilityFindInPageResult( |
| 601 int identifier, | 600 int identifier, |
| 602 int match_index, | 601 int match_index, |
| 603 const blink::WebAXObject& start_object, | 602 const blink::WebAXObject& start_object, |
| 604 int start_offset, | 603 int start_offset, |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1220 FrameBlameContext* blame_context_; // Not owned. | 1219 FrameBlameContext* blame_context_; // Not owned. |
| 1221 | 1220 |
| 1222 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1221 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1223 | 1222 |
| 1224 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1223 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1225 }; | 1224 }; |
| 1226 | 1225 |
| 1227 } // namespace content | 1226 } // namespace content |
| 1228 | 1227 |
| 1229 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1228 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |