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

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. 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_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...) Expand 10 before | Expand all | Expand 10 after
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;
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') | webkit/plugins/ppapi/ppapi_plugin_instance.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698