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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 bool runModalPromptDialog(const blink::WebString& message, | 558 bool runModalPromptDialog(const blink::WebString& message, |
559 const blink::WebString& default_value, | 559 const blink::WebString& default_value, |
560 blink::WebString* actual_value) override; | 560 blink::WebString* actual_value) override; |
561 bool runModalBeforeUnloadDialog(bool is_reload) override; | 561 bool runModalBeforeUnloadDialog(bool is_reload) override; |
562 bool runFileChooser( | 562 bool runFileChooser( |
563 const blink::WebFileChooserParams& params, | 563 const blink::WebFileChooserParams& params, |
564 blink::WebFileChooserCompletion* chooser_completion) override; | 564 blink::WebFileChooserCompletion* chooser_completion) override; |
565 void showContextMenu(const blink::WebContextMenuData& data) override; | 565 void showContextMenu(const blink::WebContextMenuData& data) override; |
566 void saveImageFromDataURL(const blink::WebString& data_url) override; | 566 void saveImageFromDataURL(const blink::WebString& data_url) override; |
567 void willSendRequest(blink::WebLocalFrame* frame, | 567 void willSendRequest(blink::WebLocalFrame* frame, |
568 unsigned identifier, | 568 blink::WebURLRequest& request) override; |
569 blink::WebURLRequest& request, | 569 void didReceiveResponse(const blink::WebURLResponse& response) override; |
570 const blink::WebURLResponse& redirect_response) override; | |
571 void didReceiveResponse(unsigned identifier, | |
572 const blink::WebURLResponse& response) override; | |
573 void didLoadResourceFromMemoryCache( | 570 void didLoadResourceFromMemoryCache( |
574 const blink::WebURLRequest& request, | 571 const blink::WebURLRequest& request, |
575 const blink::WebURLResponse& response) override; | 572 const blink::WebURLResponse& response) override; |
576 void didDisplayInsecureContent() override; | 573 void didDisplayInsecureContent() override; |
577 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, | 574 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, |
578 const blink::WebURL& target) override; | 575 const blink::WebURL& target) override; |
579 void didDisplayContentWithCertificateErrors( | 576 void didDisplayContentWithCertificateErrors( |
580 const blink::WebURL& url, | 577 const blink::WebURL& url, |
581 const blink::WebCString& security_info) override; | 578 const blink::WebCString& security_info) override; |
582 void didRunContentWithCertificateErrors( | 579 void didRunContentWithCertificateErrors( |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1284 mojom::FrameHostPtr frame_host_; | 1281 mojom::FrameHostPtr frame_host_; |
1285 | 1282 |
1286 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1283 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1287 | 1284 |
1288 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1285 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1289 }; | 1286 }; |
1290 | 1287 |
1291 } // namespace content | 1288 } // namespace content |
1292 | 1289 |
1293 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1290 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |