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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 bool is_during_unload) OVERRIDE; | 374 bool is_during_unload) OVERRIDE; |
375 virtual void RendererResponsive(RenderViewHost* render_view_host) OVERRIDE; | 375 virtual void RendererResponsive(RenderViewHost* render_view_host) OVERRIDE; |
376 virtual void LoadStateChanged(const GURL& url, | 376 virtual void LoadStateChanged(const GURL& url, |
377 const net::LoadStateWithParam& load_state, | 377 const net::LoadStateWithParam& load_state, |
378 uint64 upload_position, | 378 uint64 upload_position, |
379 uint64 upload_size) OVERRIDE; | 379 uint64 upload_size) OVERRIDE; |
380 virtual void WorkerCrashed() OVERRIDE; | 380 virtual void WorkerCrashed() OVERRIDE; |
381 virtual void Activate() OVERRIDE; | 381 virtual void Activate() OVERRIDE; |
382 virtual void Deactivate() OVERRIDE; | 382 virtual void Deactivate() OVERRIDE; |
383 virtual void LostCapture() OVERRIDE; | 383 virtual void LostCapture() OVERRIDE; |
384 virtual void HandleMouseMove() OVERRIDE; | |
385 virtual void HandleMouseDown() OVERRIDE; | 384 virtual void HandleMouseDown() OVERRIDE; |
386 virtual void HandleMouseUp() OVERRIDE; | 385 virtual void HandleMouseUp() OVERRIDE; |
387 virtual void HandlePointerActivate() OVERRIDE; | 386 virtual void HandlePointerActivate() OVERRIDE; |
388 virtual void HandleGestureBegin() OVERRIDE; | 387 virtual void HandleGestureBegin() OVERRIDE; |
389 virtual void HandleGestureEnd() OVERRIDE; | 388 virtual void HandleGestureEnd() OVERRIDE; |
390 virtual void RunFileChooser( | 389 virtual void RunFileChooser( |
391 RenderViewHost* render_view_host, | 390 RenderViewHost* render_view_host, |
392 const FileChooserParams& params) OVERRIDE; | 391 const FileChooserParams& params) OVERRIDE; |
393 virtual void ToggleFullscreenMode(bool enter_fullscreen) OVERRIDE; | 392 virtual void ToggleFullscreenMode(bool enter_fullscreen) OVERRIDE; |
394 virtual bool IsFullscreenForCurrentTab() const OVERRIDE; | 393 virtual bool IsFullscreenForCurrentTab() const OVERRIDE; |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 // Maps the ids of pending image downloads to their callbacks | 873 // Maps the ids of pending image downloads to their callbacks |
875 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; | 874 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; |
876 ImageDownloadMap image_download_map_; | 875 ImageDownloadMap image_download_map_; |
877 | 876 |
878 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 877 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
879 }; | 878 }; |
880 | 879 |
881 } // namespace content | 880 } // namespace content |
882 | 881 |
883 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 882 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |