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