| 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 void DidAddContentSecurityPolicies( | 546 void DidAddContentSecurityPolicies( |
| 547 const blink::WebVector<blink::WebContentSecurityPolicy>&) override; | 547 const blink::WebVector<blink::WebContentSecurityPolicy>&) override; |
| 548 void DidChangeFrameOwnerProperties( | 548 void DidChangeFrameOwnerProperties( |
| 549 blink::WebFrame* child_frame, | 549 blink::WebFrame* child_frame, |
| 550 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 550 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
| 551 void DidMatchCSS( | 551 void DidMatchCSS( |
| 552 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 552 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
| 553 const blink::WebVector<blink::WebString>& stopped_matching_selectors) | 553 const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
| 554 override; | 554 override; |
| 555 void SetHasReceivedUserGesture() override; | 555 void SetHasReceivedUserGesture() override; |
| 556 void SetDevToolsFrameId(const blink::WebString& devtools_frame_id) override; |
| 556 bool ShouldReportDetailedMessageForSource( | 557 bool ShouldReportDetailedMessageForSource( |
| 557 const blink::WebString& source) override; | 558 const blink::WebString& source) override; |
| 558 void DidAddMessageToConsole(const blink::WebConsoleMessage& message, | 559 void DidAddMessageToConsole(const blink::WebConsoleMessage& message, |
| 559 const blink::WebString& source_name, | 560 const blink::WebString& source_name, |
| 560 unsigned source_line, | 561 unsigned source_line, |
| 561 const blink::WebString& stack_trace) override; | 562 const blink::WebString& stack_trace) override; |
| 562 void LoadURLExternally(const blink::WebURLRequest& request, | 563 void LoadURLExternally(const blink::WebURLRequest& request, |
| 563 blink::WebNavigationPolicy policy, | 564 blink::WebNavigationPolicy policy, |
| 564 const blink::WebString& suggested_name, | 565 const blink::WebString& suggested_name, |
| 565 bool should_replace_current_entry) override; | 566 bool should_replace_current_entry) override; |
| (...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; | 1473 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; |
| 1473 | 1474 |
| 1474 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1475 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1475 | 1476 |
| 1476 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1477 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1477 }; | 1478 }; |
| 1478 | 1479 |
| 1479 } // namespace content | 1480 } // namespace content |
| 1480 | 1481 |
| 1481 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1482 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |