| 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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 unsigned identifier, | 481 unsigned identifier, |
| 482 blink::WebURLRequest& request, | 482 blink::WebURLRequest& request, |
| 483 const blink::WebURLResponse& redirect_response); | 483 const blink::WebURLResponse& redirect_response); |
| 484 virtual void didReceiveResponse(blink::WebLocalFrame* frame, | 484 virtual void didReceiveResponse(blink::WebLocalFrame* frame, |
| 485 unsigned identifier, | 485 unsigned identifier, |
| 486 const blink::WebURLResponse& response); | 486 const blink::WebURLResponse& response); |
| 487 virtual void didLoadResourceFromMemoryCache( | 487 virtual void didLoadResourceFromMemoryCache( |
| 488 blink::WebLocalFrame* frame, | 488 blink::WebLocalFrame* frame, |
| 489 const blink::WebURLRequest& request, | 489 const blink::WebURLRequest& request, |
| 490 const blink::WebURLResponse& response); | 490 const blink::WebURLResponse& response); |
| 491 virtual void didDisplayInsecureContent(blink::WebLocalFrame* frame); | 491 virtual void didDisplayInsecureContent(); |
| 492 virtual void didRunInsecureContent(blink::WebLocalFrame* frame, | 492 virtual void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |
| 493 const blink::WebSecurityOrigin& origin, | |
| 494 const blink::WebURL& target); | 493 const blink::WebURL& target); |
| 495 virtual void didChangePerformanceTiming(); | 494 virtual void didChangePerformanceTiming(); |
| 496 virtual void didAbortLoading(blink::WebLocalFrame* frame); | 495 virtual void didAbortLoading(blink::WebLocalFrame* frame); |
| 497 virtual void didCreateScriptContext(blink::WebLocalFrame* frame, | 496 virtual void didCreateScriptContext(blink::WebLocalFrame* frame, |
| 498 v8::Local<v8::Context> context, | 497 v8::Local<v8::Context> context, |
| 499 int extension_group, | 498 int extension_group, |
| 500 int world_id); | 499 int world_id); |
| 501 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame, | 500 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame, |
| 502 v8::Local<v8::Context> context, | 501 v8::Local<v8::Context> context, |
| 503 int world_id); | 502 int world_id); |
| (...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1044 #endif | 1043 #endif |
| 1045 | 1044 |
| 1046 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1045 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1047 | 1046 |
| 1048 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1047 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1049 }; | 1048 }; |
| 1050 | 1049 |
| 1051 } // namespace content | 1050 } // namespace content |
| 1052 | 1051 |
| 1053 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1052 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |