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_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...) Loading... | |
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_ |
OLD | NEW |