Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1047)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2831583004: Remove redundant WebLocalFrame* parameter from DidClearWindowObject (Closed)
Patch Set: Rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/plugins/renderer/webview_plugin.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 blink::WebDataSource* datasource) override; 561 blink::WebDataSource* datasource) override;
562 void DidStartProvisionalLoad(blink::WebDataSource* data_source, 562 void DidStartProvisionalLoad(blink::WebDataSource* data_source,
563 blink::WebURLRequest& request) override; 563 blink::WebURLRequest& request) override;
564 void DidReceiveServerRedirectForProvisionalLoad() override; 564 void DidReceiveServerRedirectForProvisionalLoad() override;
565 void DidFailProvisionalLoad(const blink::WebURLError& error, 565 void DidFailProvisionalLoad(const blink::WebURLError& error,
566 blink::WebHistoryCommitType commit_type) override; 566 blink::WebHistoryCommitType commit_type) override;
567 void DidCommitProvisionalLoad( 567 void DidCommitProvisionalLoad(
568 const blink::WebHistoryItem& item, 568 const blink::WebHistoryItem& item,
569 blink::WebHistoryCommitType commit_type) override; 569 blink::WebHistoryCommitType commit_type) override;
570 void DidCreateNewDocument(blink::WebLocalFrame* frame) override; 570 void DidCreateNewDocument(blink::WebLocalFrame* frame) override;
571 void DidClearWindowObject(blink::WebLocalFrame* frame) override; 571 void DidClearWindowObject() override;
572 void DidCreateDocumentElement(blink::WebLocalFrame* frame) override; 572 void DidCreateDocumentElement(blink::WebLocalFrame* frame) override;
573 void RunScriptsAtDocumentElementAvailable( 573 void RunScriptsAtDocumentElementAvailable(
574 blink::WebLocalFrame* frame) override; 574 blink::WebLocalFrame* frame) override;
575 void DidReceiveTitle(blink::WebLocalFrame* frame, 575 void DidReceiveTitle(blink::WebLocalFrame* frame,
576 const blink::WebString& title, 576 const blink::WebString& title,
577 blink::WebTextDirection direction) override; 577 blink::WebTextDirection direction) override;
578 void DidChangeIcon(blink::WebIconURL::Type icon_type) override; 578 void DidChangeIcon(blink::WebIconURL::Type icon_type) override;
579 void DidFinishDocumentLoad(blink::WebLocalFrame* frame) override; 579 void DidFinishDocumentLoad(blink::WebLocalFrame* frame) override;
580 void RunScriptsAtDocumentReady(bool document_is_empty) override; 580 void RunScriptsAtDocumentReady(bool document_is_empty) override;
581 void RunScriptsAtDocumentIdle() override; 581 void RunScriptsAtDocumentIdle() override;
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
1424 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; 1424 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_;
1425 1425
1426 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1426 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1427 1427
1428 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1428 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1429 }; 1429 };
1430 1430
1431 } // namespace content 1431 } // namespace content
1432 1432
1433 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1433 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « components/plugins/renderer/webview_plugin.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698