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

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

Issue 1642283002: Deal with frame removal by content scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last nits Created 4 years, 9 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 | « content/renderer/mojo_bindings_controller.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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 void didFailProvisionalLoad(blink::WebLocalFrame* frame, 484 void didFailProvisionalLoad(blink::WebLocalFrame* frame,
485 const blink::WebURLError& error, 485 const blink::WebURLError& error,
486 blink::WebHistoryCommitType commit_type) override; 486 blink::WebHistoryCommitType commit_type) override;
487 void didCommitProvisionalLoad( 487 void didCommitProvisionalLoad(
488 blink::WebLocalFrame* frame, 488 blink::WebLocalFrame* frame,
489 const blink::WebHistoryItem& item, 489 const blink::WebHistoryItem& item,
490 blink::WebHistoryCommitType commit_type) override; 490 blink::WebHistoryCommitType commit_type) override;
491 void didCreateNewDocument(blink::WebLocalFrame* frame) override; 491 void didCreateNewDocument(blink::WebLocalFrame* frame) override;
492 void didClearWindowObject(blink::WebLocalFrame* frame) override; 492 void didClearWindowObject(blink::WebLocalFrame* frame) override;
493 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; 493 void didCreateDocumentElement(blink::WebLocalFrame* frame) override;
494 void runScriptsAtDocumentElementAvailable(
495 blink::WebLocalFrame* frame) override;
494 void didReceiveTitle(blink::WebLocalFrame* frame, 496 void didReceiveTitle(blink::WebLocalFrame* frame,
495 const blink::WebString& title, 497 const blink::WebString& title,
496 blink::WebTextDirection direction) override; 498 blink::WebTextDirection direction) override;
497 void didChangeIcon(blink::WebLocalFrame* frame, 499 void didChangeIcon(blink::WebLocalFrame* frame,
498 blink::WebIconURL::Type icon_type) override; 500 blink::WebIconURL::Type icon_type) override;
499 void didFinishDocumentLoad(blink::WebLocalFrame* frame, 501 void didFinishDocumentLoad(blink::WebLocalFrame* frame,
500 bool document_is_empty) override; 502 bool document_is_empty) override;
503 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame) override;
501 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; 504 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override;
502 void didFailLoad(blink::WebLocalFrame* frame, 505 void didFailLoad(blink::WebLocalFrame* frame,
503 const blink::WebURLError& error, 506 const blink::WebURLError& error,
504 blink::WebHistoryCommitType commit_type) override; 507 blink::WebHistoryCommitType commit_type) override;
505 void didFinishLoad(blink::WebLocalFrame* frame) override; 508 void didFinishLoad(blink::WebLocalFrame* frame) override;
506 void didNavigateWithinPage(blink::WebLocalFrame* frame, 509 void didNavigateWithinPage(blink::WebLocalFrame* frame,
507 const blink::WebHistoryItem& item, 510 const blink::WebHistoryItem& item,
508 blink::WebHistoryCommitType commit_type) override; 511 blink::WebHistoryCommitType commit_type) override;
509 void didUpdateCurrentHistoryItem() override; 512 void didUpdateCurrentHistoryItem() override;
510 void didChangeThemeColor() override; 513 void didChangeThemeColor() override;
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 #endif 1211 #endif
1209 1212
1210 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1213 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1211 1214
1212 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1215 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1213 }; 1216 };
1214 1217
1215 } // namespace content 1218 } // namespace content
1216 1219
1217 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1220 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/mojo_bindings_controller.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698