| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 blink::WebSecurityOrigin target_origin, | 519 blink::WebSecurityOrigin target_origin, |
| 520 blink::WebDOMMessageEvent event); | 520 blink::WebDOMMessageEvent event); |
| 521 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 521 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
| 522 const blink::WebURL& url); | 522 const blink::WebURL& url); |
| 523 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 523 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
| 524 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 524 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
| 525 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 525 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
| 526 int arb_robustness_status_code); | 526 int arb_robustness_status_code); |
| 527 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); | 527 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); |
| 528 virtual bool isControlledByServiceWorker(blink::WebDataSource& data_source); | 528 virtual bool isControlledByServiceWorker(blink::WebDataSource& data_source); |
| 529 virtual int64_t serviceWorkerID(blink::WebDataSource& data_source); | 529 virtual std::string serviceWorkerID(blink::WebDataSource& data_source); |
| 530 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, | 530 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 531 blink::WebAXEvent event); | 531 blink::WebAXEvent event); |
| 532 virtual void handleAccessibilityFindInPageResult( | 532 virtual void handleAccessibilityFindInPageResult( |
| 533 int identifier, | 533 int identifier, |
| 534 int match_index, | 534 int match_index, |
| 535 const blink::WebAXObject& start_object, | 535 const blink::WebAXObject& start_object, |
| 536 int start_offset, | 536 int start_offset, |
| 537 const blink::WebAXObject& end_object, | 537 const blink::WebAXObject& end_object, |
| 538 int end_offset); | 538 int end_offset); |
| 539 virtual void didChangeManifest(blink::WebLocalFrame*); | 539 virtual void didChangeManifest(blink::WebLocalFrame*); |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 #endif | 1005 #endif |
| 1006 | 1006 |
| 1007 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1007 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1008 | 1008 |
| 1009 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1009 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1010 }; | 1010 }; |
| 1011 | 1011 |
| 1012 } // namespace content | 1012 } // namespace content |
| 1013 | 1013 |
| 1014 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1014 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |