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

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

Issue 1825873002: Deal with frame removal by content scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2661
Patch Set: 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 void didFailProvisionalLoad(blink::WebLocalFrame* frame, 483 void didFailProvisionalLoad(blink::WebLocalFrame* frame,
484 const blink::WebURLError& error, 484 const blink::WebURLError& error,
485 blink::WebHistoryCommitType commit_type) override; 485 blink::WebHistoryCommitType commit_type) override;
486 void didCommitProvisionalLoad( 486 void didCommitProvisionalLoad(
487 blink::WebLocalFrame* frame, 487 blink::WebLocalFrame* frame,
488 const blink::WebHistoryItem& item, 488 const blink::WebHistoryItem& item,
489 blink::WebHistoryCommitType commit_type) override; 489 blink::WebHistoryCommitType commit_type) override;
490 void didCreateNewDocument(blink::WebLocalFrame* frame) override; 490 void didCreateNewDocument(blink::WebLocalFrame* frame) override;
491 void didClearWindowObject(blink::WebLocalFrame* frame) override; 491 void didClearWindowObject(blink::WebLocalFrame* frame) override;
492 void didCreateDocumentElement(blink::WebLocalFrame* frame) override; 492 void didCreateDocumentElement(blink::WebLocalFrame* frame) override;
493 void runScriptsAtDocumentElementAvailable(
494 blink::WebLocalFrame* frame) override;
493 void didReceiveTitle(blink::WebLocalFrame* frame, 495 void didReceiveTitle(blink::WebLocalFrame* frame,
494 const blink::WebString& title, 496 const blink::WebString& title,
495 blink::WebTextDirection direction) override; 497 blink::WebTextDirection direction) override;
496 void didChangeIcon(blink::WebLocalFrame* frame, 498 void didChangeIcon(blink::WebLocalFrame* frame,
497 blink::WebIconURL::Type icon_type) override; 499 blink::WebIconURL::Type icon_type) override;
498 void didFinishDocumentLoad(blink::WebLocalFrame* frame, 500 void didFinishDocumentLoad(blink::WebLocalFrame* frame,
499 bool document_is_empty) override; 501 bool document_is_empty) override;
502 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame) override;
500 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; 503 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override;
501 void didFailLoad(blink::WebLocalFrame* frame, 504 void didFailLoad(blink::WebLocalFrame* frame,
502 const blink::WebURLError& error, 505 const blink::WebURLError& error,
503 blink::WebHistoryCommitType commit_type) override; 506 blink::WebHistoryCommitType commit_type) override;
504 void didFinishLoad(blink::WebLocalFrame* frame) override; 507 void didFinishLoad(blink::WebLocalFrame* frame) override;
505 void didNavigateWithinPage(blink::WebLocalFrame* frame, 508 void didNavigateWithinPage(blink::WebLocalFrame* frame,
506 const blink::WebHistoryItem& item, 509 const blink::WebHistoryItem& item,
507 blink::WebHistoryCommitType commit_type) override; 510 blink::WebHistoryCommitType commit_type) override;
508 void didUpdateCurrentHistoryItem() override; 511 void didUpdateCurrentHistoryItem() override;
509 void didChangeThemeColor() override; 512 void didChangeThemeColor() override;
(...skipping 698 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