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