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

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

Issue 592263002: Send initializeChildFrame from RenderFrameProxy instead of WebLocalFrame (part 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nits Created 6 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 | « no previous file | 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 blink::WebFrame* target_frame, 428 blink::WebFrame* target_frame,
429 blink::WebSecurityOrigin target_origin, 429 blink::WebSecurityOrigin target_origin,
430 blink::WebDOMMessageEvent event); 430 blink::WebDOMMessageEvent event);
431 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, 431 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame,
432 const blink::WebURL& url); 432 const blink::WebURL& url);
433 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); 433 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame);
434 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); 434 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value);
435 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, 435 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame,
436 int arb_robustness_status_code); 436 int arb_robustness_status_code);
437 virtual void forwardInputEvent(const blink::WebInputEvent* event); 437 virtual void forwardInputEvent(const blink::WebInputEvent* event);
438 virtual void initializeChildFrame(const blink::WebRect& frame_rect,
439 float scale_factor);
440 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); 438 virtual blink::WebScreenOrientationClient* webScreenOrientationClient();
441 virtual bool isControlledByServiceWorker(); 439 virtual bool isControlledByServiceWorker();
442 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, 440 virtual void postAccessibilityEvent(const blink::WebAXObject& obj,
443 blink::WebAXEvent event); 441 blink::WebAXEvent event);
444 virtual void didChangeManifest(blink::WebLocalFrame*); 442 virtual void didChangeManifest(blink::WebLocalFrame*);
445 443
446 // WebMediaPlayerDelegate implementation: 444 // WebMediaPlayerDelegate implementation:
447 virtual void DidPlay(blink::WebMediaPlayer* player) OVERRIDE; 445 virtual void DidPlay(blink::WebMediaPlayer* player) OVERRIDE;
448 virtual void DidPause(blink::WebMediaPlayer* player) OVERRIDE; 446 virtual void DidPause(blink::WebMediaPlayer* player) OVERRIDE;
449 virtual void PlayerGone(blink::WebMediaPlayer* player) OVERRIDE; 447 virtual void PlayerGone(blink::WebMediaPlayer* player) OVERRIDE;
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 #endif 746 #endif
749 747
750 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 748 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
751 749
752 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 750 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
753 }; 751 };
754 752
755 } // namespace content 753 } // namespace content
756 754
757 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 755 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698