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

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

Issue 2724203004: Test run for https://codereview.chromium.org/2725993002/ with the timer intentionally broken. (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 // keyboard. 175 // keyboard.
176 virtual void SetIsVirtualKeyboardRequested(bool requested) {} 176 virtual void SetIsVirtualKeyboardRequested(bool requested) {}
177 virtual bool IsVirtualKeyboardRequested(); 177 virtual bool IsVirtualKeyboardRequested();
178 178
179 // Whether the user agent is overridden using the Chrome for Android "Request 179 // Whether the user agent is overridden using the Chrome for Android "Request
180 // Desktop Site" feature. 180 // Desktop Site" feature.
181 virtual bool IsOverridingUserAgent(); 181 virtual bool IsOverridingUserAgent();
182 182
183 virtual bool IsJavaScriptDialogShowing() const; 183 virtual bool IsJavaScriptDialogShowing() const;
184 184
185 // If a timer for an unresponsive renderer fires, whether it should be
186 // ignored.
187 virtual bool ShouldIgnoreUnresponsiveRenderer();
188
185 // Whether download UI should be hidden. 189 // Whether download UI should be hidden.
186 virtual bool HideDownloadUI() const; 190 virtual bool HideDownloadUI() const;
187 191
188 // Whether the WebContents as a persistent video. 192 // Whether the WebContents as a persistent video.
189 virtual bool HasPersistentVideo() const; 193 virtual bool HasPersistentVideo() const;
190 194
191 protected: 195 protected:
192 virtual ~RenderViewHostDelegate() {} 196 virtual ~RenderViewHostDelegate() {}
193 }; 197 };
194 198
195 } // namespace content 199 } // namespace content
196 200
197 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ 201 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698