| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 virtual blink::WebFrame* createChildFrame( | 359 virtual blink::WebFrame* createChildFrame( |
| 360 blink::WebLocalFrame* parent, | 360 blink::WebLocalFrame* parent, |
| 361 blink::WebTreeScopeType scope, | 361 blink::WebTreeScopeType scope, |
| 362 const blink::WebString& name, | 362 const blink::WebString& name, |
| 363 blink::WebSandboxFlags sandboxFlags); | 363 blink::WebSandboxFlags sandboxFlags); |
| 364 virtual blink::WebFrame* createChildFrame( | 364 virtual blink::WebFrame* createChildFrame( |
| 365 blink::WebLocalFrame* parent, | 365 blink::WebLocalFrame* parent, |
| 366 const blink::WebString& name, | 366 const blink::WebString& name, |
| 367 blink::WebSandboxFlags sandboxFlags); | 367 blink::WebSandboxFlags sandboxFlags); |
| 368 virtual void didDisownOpener(blink::WebLocalFrame* frame); | 368 virtual void didDisownOpener(blink::WebLocalFrame* frame); |
| 369 // TODO(lfg): Remove this method once the blink patch lands. |
| 369 virtual void frameDetached(blink::WebFrame* frame); | 370 virtual void frameDetached(blink::WebFrame* frame); |
| 371 virtual void frameDetached(blink::WebFrame* frame, bool for_replacement); |
| 370 virtual void frameFocused(); | 372 virtual void frameFocused(); |
| 371 virtual void willClose(blink::WebFrame* frame); | 373 virtual void willClose(blink::WebFrame* frame); |
| 372 virtual void didChangeName(blink::WebLocalFrame* frame, | 374 virtual void didChangeName(blink::WebLocalFrame* frame, |
| 373 const blink::WebString& name); | 375 const blink::WebString& name); |
| 374 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame, | 376 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame, |
| 375 blink::WebSandboxFlags flags); | 377 blink::WebSandboxFlags flags); |
| 376 virtual void didMatchCSS( | 378 virtual void didMatchCSS( |
| 377 blink::WebLocalFrame* frame, | 379 blink::WebLocalFrame* frame, |
| 378 const blink::WebVector<blink::WebString>& newly_matching_selectors, | 380 const blink::WebVector<blink::WebString>& newly_matching_selectors, |
| 379 const blink::WebVector<blink::WebString>& stopped_matching_selectors); | 381 const blink::WebVector<blink::WebString>& stopped_matching_selectors); |
| (...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 #endif | 970 #endif |
| 969 | 971 |
| 970 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 972 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 971 | 973 |
| 972 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 974 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 973 }; | 975 }; |
| 974 | 976 |
| 975 } // namespace content | 977 } // namespace content |
| 976 | 978 |
| 977 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 979 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |