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

Side by Side Diff: content/browser/renderer_host/render_view_host_delegate.h

Issue 7461059: Fullscreen JS API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: responded to sky's comment Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698