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

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

Issue 1426923007: Remove PluginLoadObserver and related logic, it was only used for NPAPI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/pepper/pepper_webplugin_impl.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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 const blink::WebURL& url, 524 const blink::WebURL& url,
525 const blink::WebCString& security_info, 525 const blink::WebCString& security_info,
526 const blink::WebURL& main_resource_url, 526 const blink::WebURL& main_resource_url,
527 const blink::WebCString& main_resource_security_info) override; 527 const blink::WebCString& main_resource_security_info) override;
528 void didRunContentWithCertificateErrors( 528 void didRunContentWithCertificateErrors(
529 const blink::WebURL& url, 529 const blink::WebURL& url,
530 const blink::WebCString& security_info, 530 const blink::WebCString& security_info,
531 const blink::WebURL& main_resource_url, 531 const blink::WebURL& main_resource_url,
532 const blink::WebCString& main_resource_security_info) override; 532 const blink::WebCString& main_resource_security_info) override;
533 void didChangePerformanceTiming() override; 533 void didChangePerformanceTiming() override;
534 void didAbortLoading(blink::WebLocalFrame* frame) override;
535 void didCreateScriptContext(blink::WebLocalFrame* frame, 534 void didCreateScriptContext(blink::WebLocalFrame* frame,
536 v8::Local<v8::Context> context, 535 v8::Local<v8::Context> context,
537 int extension_group, 536 int extension_group,
538 int world_id) override; 537 int world_id) override;
539 void willReleaseScriptContext(blink::WebLocalFrame* frame, 538 void willReleaseScriptContext(blink::WebLocalFrame* frame,
540 v8::Local<v8::Context> context, 539 v8::Local<v8::Context> context,
541 int world_id) override; 540 int world_id) override;
542 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; 541 void didChangeScrollOffset(blink::WebLocalFrame* frame) override;
543 void willInsertBody(blink::WebLocalFrame* frame) override; 542 void willInsertBody(blink::WebLocalFrame* frame) override;
544 void reportFindInPageMatchCount(int request_id, 543 void reportFindInPageMatchCount(int request_id,
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 #endif 1121 #endif
1123 1122
1124 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1123 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1125 1124
1126 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1125 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1127 }; 1126 };
1128 1127
1129 } // namespace content 1128 } // namespace content
1130 1129
1131 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1130 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_webplugin_impl.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698