| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   564   void willSendRequest(blink::WebLocalFrame* frame, |   564   void willSendRequest(blink::WebLocalFrame* frame, | 
|   565                        blink::WebURLRequest& request) override; |   565                        blink::WebURLRequest& request) override; | 
|   566   void didReceiveResponse(const blink::WebURLResponse& response) override; |   566   void didReceiveResponse(const blink::WebURLResponse& response) override; | 
|   567   void didLoadResourceFromMemoryCache( |   567   void didLoadResourceFromMemoryCache( | 
|   568       const blink::WebURLRequest& request, |   568       const blink::WebURLRequest& request, | 
|   569       const blink::WebURLResponse& response) override; |   569       const blink::WebURLResponse& response) override; | 
|   570   void didDisplayInsecureContent() override; |   570   void didDisplayInsecureContent() override; | 
|   571   void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |   571   void didRunInsecureContent(const blink::WebSecurityOrigin& origin, | 
|   572                              const blink::WebURL& target) override; |   572                              const blink::WebURL& target) override; | 
|   573   void didDisplayContentWithCertificateErrors( |   573   void didDisplayContentWithCertificateErrors( | 
|   574       const blink::WebURL& url, |   574       const blink::WebURL& url) override; | 
|   575       const blink::WebCString& security_info) override; |   575   void didRunContentWithCertificateErrors(const blink::WebURL& url) override; | 
|   576   void didRunContentWithCertificateErrors( |  | 
|   577       const blink::WebURL& url, |  | 
|   578       const blink::WebCString& security_info) override; |  | 
|   579   void didChangePerformanceTiming() override; |   576   void didChangePerformanceTiming() override; | 
|   580   void didObserveLoadingBehavior( |   577   void didObserveLoadingBehavior( | 
|   581       blink::WebLoadingBehaviorFlag behavior) override; |   578       blink::WebLoadingBehaviorFlag behavior) override; | 
|   582   void didCreateScriptContext(blink::WebLocalFrame* frame, |   579   void didCreateScriptContext(blink::WebLocalFrame* frame, | 
|   583                               v8::Local<v8::Context> context, |   580                               v8::Local<v8::Context> context, | 
|   584                               int extension_group, |   581                               int extension_group, | 
|   585                               int world_id) override; |   582                               int world_id) override; | 
|   586   void willReleaseScriptContext(blink::WebLocalFrame* frame, |   583   void willReleaseScriptContext(blink::WebLocalFrame* frame, | 
|   587                                 v8::Local<v8::Context> context, |   584                                 v8::Local<v8::Context> context, | 
|   588                                 int world_id) override; |   585                                 int world_id) override; | 
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1282   bool has_accessed_initial_document_; |  1279   bool has_accessed_initial_document_; | 
|  1283  |  1280  | 
|  1284   base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |  1281   base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 
|  1285  |  1282  | 
|  1286   DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |  1283   DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 
|  1287 }; |  1284 }; | 
|  1288  |  1285  | 
|  1289 }  // namespace content |  1286 }  // namespace content | 
|  1290  |  1287  | 
|  1291 #endif  // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |  1288 #endif  // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 
| OLD | NEW |