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

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

Issue 2633253002: Split content script injections into multiple tasks (Closed)
Patch Set: rebase Created 3 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
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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 void runScriptsAtDocumentElementAvailable( 569 void runScriptsAtDocumentElementAvailable(
570 blink::WebLocalFrame* frame) override; 570 blink::WebLocalFrame* frame) override;
571 void didReceiveTitle(blink::WebLocalFrame* frame, 571 void didReceiveTitle(blink::WebLocalFrame* frame,
572 const blink::WebString& title, 572 const blink::WebString& title,
573 blink::WebTextDirection direction) override; 573 blink::WebTextDirection direction) override;
574 void didChangeIcon(blink::WebLocalFrame* frame, 574 void didChangeIcon(blink::WebLocalFrame* frame,
575 blink::WebIconURL::Type icon_type) override; 575 blink::WebIconURL::Type icon_type) override;
576 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override; 576 void didFinishDocumentLoad(blink::WebLocalFrame* frame) override;
577 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame, 577 void runScriptsAtDocumentReady(blink::WebLocalFrame* frame,
578 bool document_is_empty) override; 578 bool document_is_empty) override;
579 void runScriptsAtDocumentIdle(blink::WebLocalFrame* frame) override;
579 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override; 580 void didHandleOnloadEvents(blink::WebLocalFrame* frame) override;
580 void didFailLoad(blink::WebLocalFrame* frame, 581 void didFailLoad(blink::WebLocalFrame* frame,
581 const blink::WebURLError& error, 582 const blink::WebURLError& error,
582 blink::WebHistoryCommitType commit_type) override; 583 blink::WebHistoryCommitType commit_type) override;
583 void didFinishLoad(blink::WebLocalFrame* frame) override; 584 void didFinishLoad(blink::WebLocalFrame* frame) override;
584 void didNavigateWithinPage(blink::WebLocalFrame* frame, 585 void didNavigateWithinPage(blink::WebLocalFrame* frame,
585 const blink::WebHistoryItem& item, 586 const blink::WebHistoryItem& item,
586 blink::WebHistoryCommitType commit_type, 587 blink::WebHistoryCommitType commit_type,
587 bool content_initiated) override; 588 bool content_initiated) override;
588 void didUpdateCurrentHistoryItem() override; 589 void didUpdateCurrentHistoryItem() override;
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 int enabled_bindings_ = 0; 1398 int enabled_bindings_ = 0;
1398 1399
1399 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1400 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1400 1401
1401 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1402 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1402 }; 1403 };
1403 1404
1404 } // namespace content 1405 } // namespace content
1405 1406
1406 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1407 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698