Chromium Code Reviews

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

Issue 8273029: PPAPI Fullscreen: In ViewChanged, check if the browser entered fullscreen mode (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/pepper_plugin_delegate_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PUBLIC_RENDERER_RENDER_VIEW_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "ipc/ipc_message.h" 10 #include "ipc/ipc_message.h"
(...skipping 112 matching lines...)
123 // Displays a modal alert dialog containing the given message. Returns 123 // Displays a modal alert dialog containing the given message. Returns
124 // once the user dismisses the dialog. 124 // once the user dismisses the dialog.
125 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, 125 virtual void RunModalAlertDialog(WebKit::WebFrame* frame,
126 const WebKit::WebString& message) = 0; 126 const WebKit::WebString& message) = 0;
127 127
128 // The client should handle the navigation externally. 128 // The client should handle the navigation externally.
129 virtual void LoadURLExternally( 129 virtual void LoadURLExternally(
130 WebKit::WebFrame* frame, 130 WebKit::WebFrame* frame,
131 const WebKit::WebURLRequest& request, 131 const WebKit::WebURLRequest& request,
132 WebKit::WebNavigationPolicy policy) = 0; 132 WebKit::WebNavigationPolicy policy) = 0;
133
134 // Returns true if we are in fullscreen mode.
135 virtual bool IsInFullscreenMode() = 0;
darin (slow to review) 2011/10/14 07:00:38 Actually, I don't think this needs to be part of t
polina 2011/10/14 07:46:47 Done.
133 }; 136 };
134 137
135 } // namespace content 138 } // namespace content
136 139
137 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_ 140 #endif // CONTENT_PUBLIC_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/pepper_plugin_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine