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

Side by Side Diff: content/renderer/render_view.h

Issue 7461059: Fullscreen JS API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: respond to comments 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_RENDERER_RENDER_VIEW_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 const WebKit::WebString& message, 391 const WebKit::WebString& message,
392 const WebKit::WebString& default_value, 392 const WebKit::WebString& default_value,
393 WebKit::WebString* actual_value); 393 WebKit::WebString* actual_value);
394 virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame* frame, 394 virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame* frame,
395 const WebKit::WebString& message); 395 const WebKit::WebString& message);
396 virtual void showContextMenu(WebKit::WebFrame* frame, 396 virtual void showContextMenu(WebKit::WebFrame* frame,
397 const WebKit::WebContextMenuData& data); 397 const WebKit::WebContextMenuData& data);
398 virtual bool supportsFullscreen(); 398 virtual bool supportsFullscreen();
399 virtual void enterFullscreenForNode(const WebKit::WebNode&); 399 virtual void enterFullscreenForNode(const WebKit::WebNode&);
400 virtual void exitFullscreenForNode(const WebKit::WebNode&); 400 virtual void exitFullscreenForNode(const WebKit::WebNode&);
401 virtual void enterFullscreenForElement() OVERRIDE;
scherkus (not reviewing) 2011/07/28 22:43:08 nit: ditto w/ the naming, but unfortunately you'll
koz (OOO until 15th September) 2011/07/29 04:12:58 Yep, sounds good :-)
402 virtual void exitFullscreenForElement() OVERRIDE;
401 virtual void setStatusText(const WebKit::WebString& text); 403 virtual void setStatusText(const WebKit::WebString& text);
402 virtual void setMouseOverURL(const WebKit::WebURL& url); 404 virtual void setMouseOverURL(const WebKit::WebURL& url);
403 virtual void setKeyboardFocusURL(const WebKit::WebURL& url); 405 virtual void setKeyboardFocusURL(const WebKit::WebURL& url);
404 virtual void startDragging(const WebKit::WebDragData& data, 406 virtual void startDragging(const WebKit::WebDragData& data,
405 WebKit::WebDragOperationsMask mask, 407 WebKit::WebDragOperationsMask mask,
406 const WebKit::WebImage& image, 408 const WebKit::WebImage& image,
407 const WebKit::WebPoint& imageOffset); 409 const WebKit::WebPoint& imageOffset);
408 virtual bool acceptsLoadDrops(); 410 virtual bool acceptsLoadDrops();
409 virtual void focusNext(); 411 virtual void focusNext();
410 virtual void focusPrevious(); 412 virtual void focusPrevious();
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
1169 // bunch of stuff, you should probably create a helper class and put your 1171 // bunch of stuff, you should probably create a helper class and put your
1170 // data and methods on that to avoid bloating RenderView more. You can use 1172 // data and methods on that to avoid bloating RenderView more. You can use
1171 // the Observer interface to filter IPC messages and receive frame change 1173 // the Observer interface to filter IPC messages and receive frame change
1172 // notifications. 1174 // notifications.
1173 // --------------------------------------------------------------------------- 1175 // ---------------------------------------------------------------------------
1174 1176
1175 DISALLOW_COPY_AND_ASSIGN(RenderView); 1177 DISALLOW_COPY_AND_ASSIGN(RenderView);
1176 }; 1178 };
1177 1179
1178 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1180 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698