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

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

Issue 1360223002: Remove some redundant frame parameters from WebFrameClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/test_runner/web_test_proxy.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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 unsigned identifier, 481 unsigned identifier,
482 blink::WebURLRequest& request, 482 blink::WebURLRequest& request,
483 const blink::WebURLResponse& redirect_response); 483 const blink::WebURLResponse& redirect_response);
484 virtual void didReceiveResponse(blink::WebLocalFrame* frame, 484 virtual void didReceiveResponse(blink::WebLocalFrame* frame,
485 unsigned identifier, 485 unsigned identifier,
486 const blink::WebURLResponse& response); 486 const blink::WebURLResponse& response);
487 virtual void didLoadResourceFromMemoryCache( 487 virtual void didLoadResourceFromMemoryCache(
488 blink::WebLocalFrame* frame, 488 blink::WebLocalFrame* frame,
489 const blink::WebURLRequest& request, 489 const blink::WebURLRequest& request,
490 const blink::WebURLResponse& response); 490 const blink::WebURLResponse& response);
491 virtual void didDisplayInsecureContent(blink::WebLocalFrame* frame); 491 virtual void didDisplayInsecureContent();
492 virtual void didRunInsecureContent(blink::WebLocalFrame* frame, 492 virtual void didRunInsecureContent(const blink::WebSecurityOrigin& origin,
493 const blink::WebSecurityOrigin& origin,
494 const blink::WebURL& target); 493 const blink::WebURL& target);
495 virtual void didChangePerformanceTiming(); 494 virtual void didChangePerformanceTiming();
496 virtual void didAbortLoading(blink::WebLocalFrame* frame); 495 virtual void didAbortLoading(blink::WebLocalFrame* frame);
497 virtual void didCreateScriptContext(blink::WebLocalFrame* frame, 496 virtual void didCreateScriptContext(blink::WebLocalFrame* frame,
498 v8::Local<v8::Context> context, 497 v8::Local<v8::Context> context,
499 int extension_group, 498 int extension_group,
500 int world_id); 499 int world_id);
501 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame, 500 virtual void willReleaseScriptContext(blink::WebLocalFrame* frame,
502 v8::Local<v8::Context> context, 501 v8::Local<v8::Context> context,
503 int world_id); 502 int world_id);
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 #endif 1043 #endif
1045 1044
1046 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1045 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1047 1046
1048 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1047 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1049 }; 1048 };
1050 1049
1051 } // namespace content 1050 } // namespace content
1052 1051
1053 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1052 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « components/test_runner/web_test_proxy.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698