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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 blink::WebSandboxFlags sandboxFlags, | 424 blink::WebSandboxFlags sandboxFlags, |
425 const blink::WebFrameOwnerProperties& frameOwnerProperties) override; | 425 const blink::WebFrameOwnerProperties& frameOwnerProperties) override; |
426 void didChangeOpener(blink::WebFrame* frame) override; | 426 void didChangeOpener(blink::WebFrame* frame) override; |
427 void frameDetached(blink::WebFrame* frame, DetachType type) override; | 427 void frameDetached(blink::WebFrame* frame, DetachType type) override; |
428 void frameFocused() override; | 428 void frameFocused() override; |
429 void willClose(blink::WebFrame* frame) override; | 429 void willClose(blink::WebFrame* frame) override; |
430 void didChangeName(blink::WebLocalFrame* frame, | 430 void didChangeName(blink::WebLocalFrame* frame, |
431 const blink::WebString& name) override; | 431 const blink::WebString& name) override; |
432 void didChangeSandboxFlags(blink::WebFrame* child_frame, | 432 void didChangeSandboxFlags(blink::WebFrame* child_frame, |
433 blink::WebSandboxFlags flags) override; | 433 blink::WebSandboxFlags flags) override; |
434 void didChangeFrameOwnerProperties( | 434 virtual void didChangeFrameOwnerProperties( |
435 blink::WebFrame* child_frame, | 435 blink::WebFrame* child_frame, |
436 const blink::WebFrameOwnerProperties& frame_owner_properties) override; | 436 const blink::WebFrameOwnerProperties& frame_owner_properties) override; |
437 void didMatchCSS( | 437 void didMatchCSS( |
438 blink::WebLocalFrame* frame, | 438 blink::WebLocalFrame* frame, |
439 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 439 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
440 const blink::WebVector<blink::WebString>& stopped_matching_selectors) | 440 const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
441 override; | 441 override; |
442 bool shouldReportDetailedMessageForSource( | 442 bool shouldReportDetailedMessageForSource( |
443 const blink::WebString& source) override; | 443 const blink::WebString& source) override; |
444 void didAddMessageToConsole(const blink::WebConsoleMessage& message, | 444 void didAddMessageToConsole(const blink::WebConsoleMessage& message, |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1125 #endif | 1125 #endif |
1126 | 1126 |
1127 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1127 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1128 | 1128 |
1129 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1129 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1130 }; | 1130 }; |
1131 | 1131 |
1132 } // namespace content | 1132 } // namespace content |
1133 | 1133 |
1134 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1134 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |