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

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

Issue 629953003: [ServiceWorker] Add WebDataSource argument to isControlledByServiceWorker() [2/3 chromium] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use reference 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 blink::WebSecurityOrigin target_origin, 445 blink::WebSecurityOrigin target_origin,
446 blink::WebDOMMessageEvent event); 446 blink::WebDOMMessageEvent event);
447 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, 447 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame,
448 const blink::WebURL& url); 448 const blink::WebURL& url);
449 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); 449 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame);
450 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); 450 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value);
451 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, 451 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame,
452 int arb_robustness_status_code); 452 int arb_robustness_status_code);
453 virtual void forwardInputEvent(const blink::WebInputEvent* event); 453 virtual void forwardInputEvent(const blink::WebInputEvent* event);
454 virtual blink::WebScreenOrientationClient* webScreenOrientationClient(); 454 virtual blink::WebScreenOrientationClient* webScreenOrientationClient();
455 virtual bool isControlledByServiceWorker(); 455 virtual bool isControlledByServiceWorker(blink::WebDataSource&);
456 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, 456 virtual void postAccessibilityEvent(const blink::WebAXObject& obj,
457 blink::WebAXEvent event); 457 blink::WebAXEvent event);
458 virtual void didChangeManifest(blink::WebLocalFrame*); 458 virtual void didChangeManifest(blink::WebLocalFrame*);
459 459
460 // WebMediaPlayerDelegate implementation: 460 // WebMediaPlayerDelegate implementation:
461 virtual void DidPlay(blink::WebMediaPlayer* player) OVERRIDE; 461 virtual void DidPlay(blink::WebMediaPlayer* player) OVERRIDE;
462 virtual void DidPause(blink::WebMediaPlayer* player) OVERRIDE; 462 virtual void DidPause(blink::WebMediaPlayer* player) OVERRIDE;
463 virtual void PlayerGone(blink::WebMediaPlayer* player) OVERRIDE; 463 virtual void PlayerGone(blink::WebMediaPlayer* player) OVERRIDE;
464 464
465 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move 465 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 #endif 773 #endif
774 774
775 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 775 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
776 776
777 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 777 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
778 }; 778 };
779 779
780 } // namespace content 780 } // namespace content
781 781
782 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 782 #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