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

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

Issue 789533002: Fullscreen: make fullscreen requests come from RenderFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make try happy Created 5 years, 11 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 | « content/public/browser/web_contents_delegate.h ('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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 virtual void postAccessibilityEvent(const blink::WebAXObject& obj, 501 virtual void postAccessibilityEvent(const blink::WebAXObject& obj,
502 blink::WebAXEvent event); 502 blink::WebAXEvent event);
503 virtual void handleAccessibilityFindInPageResult( 503 virtual void handleAccessibilityFindInPageResult(
504 int identifier, 504 int identifier,
505 int match_index, 505 int match_index,
506 const blink::WebAXObject& start_object, 506 const blink::WebAXObject& start_object,
507 int start_offset, 507 int start_offset,
508 const blink::WebAXObject& end_object, 508 const blink::WebAXObject& end_object,
509 int end_offset); 509 int end_offset);
510 virtual void didChangeManifest(blink::WebLocalFrame*); 510 virtual void didChangeManifest(blink::WebLocalFrame*);
511 virtual bool enterFullscreen();
512 virtual bool exitFullscreen();
511 513
512 // WebMediaPlayerDelegate implementation: 514 // WebMediaPlayerDelegate implementation:
513 void DidPlay(blink::WebMediaPlayer* player) override; 515 void DidPlay(blink::WebMediaPlayer* player) override;
514 void DidPause(blink::WebMediaPlayer* player) override; 516 void DidPause(blink::WebMediaPlayer* player) override;
515 void PlayerGone(blink::WebMediaPlayer* player) override; 517 void PlayerGone(blink::WebMediaPlayer* player) override;
516 518
517 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move 519 // TODO(nasko): Make all tests in RenderViewImplTest friends and then move
518 // this back to private member. 520 // this back to private member.
519 void OnNavigate(const FrameMsg_Navigate_Params& params); 521 void OnNavigate(const FrameMsg_Navigate_Params& params);
520 522
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 #endif 852 #endif
851 853
852 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 854 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
853 855
854 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 856 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
855 }; 857 };
856 858
857 } // namespace content 859 } // namespace content
858 860
859 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 861 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/web_contents_delegate.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698