| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |