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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 652673002: NOT FOR REVIEW: Modify ToggleFullscreenMode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fixPowerBlockerNonMedia
Patch Set: Rebase 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 virtual void Deactivate() OVERRIDE; 443 virtual void Deactivate() OVERRIDE;
444 virtual void LostCapture() OVERRIDE; 444 virtual void LostCapture() OVERRIDE;
445 virtual void HandleMouseDown() OVERRIDE; 445 virtual void HandleMouseDown() OVERRIDE;
446 virtual void HandleMouseUp() OVERRIDE; 446 virtual void HandleMouseUp() OVERRIDE;
447 virtual void HandlePointerActivate() OVERRIDE; 447 virtual void HandlePointerActivate() OVERRIDE;
448 virtual void HandleGestureBegin() OVERRIDE; 448 virtual void HandleGestureBegin() OVERRIDE;
449 virtual void HandleGestureEnd() OVERRIDE; 449 virtual void HandleGestureEnd() OVERRIDE;
450 virtual void RunFileChooser( 450 virtual void RunFileChooser(
451 RenderViewHost* render_view_host, 451 RenderViewHost* render_view_host,
452 const FileChooserParams& params) OVERRIDE; 452 const FileChooserParams& params) OVERRIDE;
453 virtual void ToggleFullscreenMode(bool enter_fullscreen) OVERRIDE; 453 virtual void ToggleFullscreenMode(bool enter_fullscreen, bool is_video) OVERRI DE;
454 virtual bool IsFullscreenForCurrentTab() const OVERRIDE; 454 virtual bool IsFullscreenForCurrentTab() const OVERRIDE;
455 virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE; 455 virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE;
456 virtual void ResizeDueToAutoResize(const gfx::Size& new_size) OVERRIDE; 456 virtual void ResizeDueToAutoResize(const gfx::Size& new_size) OVERRIDE;
457 virtual void RequestToLockMouse(bool user_gesture, 457 virtual void RequestToLockMouse(bool user_gesture,
458 bool last_unlocked_by_target) OVERRIDE; 458 bool last_unlocked_by_target) OVERRIDE;
459 virtual void LostMouseLock() OVERRIDE; 459 virtual void LostMouseLock() OVERRIDE;
460 virtual void CreateNewWindow( 460 virtual void CreateNewWindow(
461 int render_process_id, 461 int render_process_id,
462 int route_id, 462 int route_id,
463 int main_frame_route_id, 463 int main_frame_route_id,
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
1243 scoped_ptr<WebContentsAudioMuter> audio_muter_; 1243 scoped_ptr<WebContentsAudioMuter> audio_muter_;
1244 1244
1245 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; 1245 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_;
1246 1246
1247 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1247 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1248 }; 1248 };
1249 1249
1250 } // namespace content 1250 } // namespace content
1251 1251
1252 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1252 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_android.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698