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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 void DidAddContentSecurityPolicies( | 538 void DidAddContentSecurityPolicies( |
539 const blink::WebVector<blink::WebContentSecurityPolicy>&) override; | 539 const blink::WebVector<blink::WebContentSecurityPolicy>&) override; |
540 void DidChangeFrameOwnerProperties( | 540 void DidChangeFrameOwnerProperties( |
541 blink::WebFrame* child_frame, | 541 blink::WebFrame* child_frame, |
542 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 542 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
543 void DidMatchCSS( | 543 void DidMatchCSS( |
544 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 544 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
545 const blink::WebVector<blink::WebString>& stopped_matching_selectors) | 545 const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
546 override; | 546 override; |
547 void SetHasReceivedUserGesture() override; | 547 void SetHasReceivedUserGesture() override; |
| 548 void SetDevToolsFrameId(const blink::WebString& devtools_frame_id) override; |
548 bool ShouldReportDetailedMessageForSource( | 549 bool ShouldReportDetailedMessageForSource( |
549 const blink::WebString& source) override; | 550 const blink::WebString& source) override; |
550 void DidAddMessageToConsole(const blink::WebConsoleMessage& message, | 551 void DidAddMessageToConsole(const blink::WebConsoleMessage& message, |
551 const blink::WebString& source_name, | 552 const blink::WebString& source_name, |
552 unsigned source_line, | 553 unsigned source_line, |
553 const blink::WebString& stack_trace) override; | 554 const blink::WebString& stack_trace) override; |
554 void LoadURLExternally(const blink::WebURLRequest& request, | 555 void LoadURLExternally(const blink::WebURLRequest& request, |
555 blink::WebNavigationPolicy policy, | 556 blink::WebNavigationPolicy policy, |
556 const blink::WebString& suggested_name, | 557 const blink::WebString& suggested_name, |
557 bool should_replace_current_entry) override; | 558 bool should_replace_current_entry) override; |
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1437 interface_provider_bindings_; | 1438 interface_provider_bindings_; |
1438 | 1439 |
1439 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1440 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1440 | 1441 |
1441 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1442 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1442 }; | 1443 }; |
1443 | 1444 |
1444 } // namespace content | 1445 } // namespace content |
1445 | 1446 |
1446 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1447 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |