Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 351 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {} | 351 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {} |
| 352 | 352 |
| 353 // Notifications about mouse events in this view. This is useful for | 353 // Notifications about mouse events in this view. This is useful for |
| 354 // implementing global 'on hover' features external to the view. | 354 // implementing global 'on hover' features external to the view. |
| 355 virtual void HandleMouseMove() {} | 355 virtual void HandleMouseMove() {} |
| 356 virtual void HandleMouseDown() {} | 356 virtual void HandleMouseDown() {} |
| 357 virtual void HandleMouseLeave() {} | 357 virtual void HandleMouseLeave() {} |
| 358 virtual void HandleMouseUp() {} | 358 virtual void HandleMouseUp() {} |
| 359 virtual void HandleMouseActivate() {} | 359 virtual void HandleMouseActivate() {} |
| 360 | 360 |
| 361 // Puts the browser into fullscreen mode, focussing on this tab. | |
|
sky
2011/07/28 03:53:29
This description makes it sound as though you inte
koz (OOO until 15th September)
2011/07/28 05:14:30
I think so. What exactly does 'select the tab' mea
sky
2011/07/28 16:07:02
The tabstrip has a bunch of tabs, but only one act
koz (OOO until 15th September)
2011/07/29 04:12:57
Is it necessary to call ActivateContents() if this
sky
2011/07/29 15:51:46
With the IPC calls it might be possible for a user
koz (OOO until 15th September)
2011/08/01 03:43:38
Ah, I see. I'll rephrase the comment and remove th
| |
| 362 virtual void EnterFullscreenMode() {} | |
| 363 | |
| 364 // Makes the browser exit fullscreen mode. | |
| 365 virtual void ExitFullscreenMode() {} | |
| 366 | |
| 361 protected: | 367 protected: |
| 362 virtual ~RenderViewHostDelegate() {} | 368 virtual ~RenderViewHostDelegate() {} |
| 363 }; | 369 }; |
| 364 | 370 |
| 365 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 371 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
| OLD | NEW |