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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 void DidAddContentSecurityPolicies( | 534 void DidAddContentSecurityPolicies( |
535 const blink::WebVector<blink::WebContentSecurityPolicy>&) override; | 535 const blink::WebVector<blink::WebContentSecurityPolicy>&) override; |
536 void DidChangeFrameOwnerProperties( | 536 void DidChangeFrameOwnerProperties( |
537 blink::WebFrame* child_frame, | 537 blink::WebFrame* child_frame, |
538 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 538 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
539 void DidMatchCSS( | 539 void DidMatchCSS( |
540 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 540 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
541 const blink::WebVector<blink::WebString>& stopped_matching_selectors) | 541 const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
542 override; | 542 override; |
543 void SetHasReceivedUserGesture() override; | 543 void SetHasReceivedUserGesture() override; |
| 544 void SetDevToolsFrameId(const blink::WebString& devtools_frame_id) override; |
544 bool ShouldReportDetailedMessageForSource( | 545 bool ShouldReportDetailedMessageForSource( |
545 const blink::WebString& source) override; | 546 const blink::WebString& source) override; |
546 void DidAddMessageToConsole(const blink::WebConsoleMessage& message, | 547 void DidAddMessageToConsole(const blink::WebConsoleMessage& message, |
547 const blink::WebString& source_name, | 548 const blink::WebString& source_name, |
548 unsigned source_line, | 549 unsigned source_line, |
549 const blink::WebString& stack_trace) override; | 550 const blink::WebString& stack_trace) override; |
550 void LoadURLExternally(const blink::WebURLRequest& request, | 551 void LoadURLExternally(const blink::WebURLRequest& request, |
551 blink::WebNavigationPolicy policy, | 552 blink::WebNavigationPolicy policy, |
552 const blink::WebString& suggested_name, | 553 const blink::WebString& suggested_name, |
553 bool should_replace_current_entry) override; | 554 bool should_replace_current_entry) override; |
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1424 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
1424 | 1425 |
1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1426 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1426 | 1427 |
1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1428 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1428 }; | 1429 }; |
1429 | 1430 |
1430 } // namespace content | 1431 } // namespace content |
1431 | 1432 |
1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1433 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |