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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2907463003: Remove window.status plumbing, it's unused and the spec says it's a dummy (Closed)
Patch Set: Drop accidental change Created 3 years, 6 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 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 bool is_reload); 176 bool is_reload);
177 177
178 virtual void CloseWindowSoon() = 0; 178 virtual void CloseWindowSoon() = 0;
179 179
180 bool OpenJavaScriptAlert(LocalFrame*, const String&); 180 bool OpenJavaScriptAlert(LocalFrame*, const String&);
181 bool OpenJavaScriptConfirm(LocalFrame*, const String&); 181 bool OpenJavaScriptConfirm(LocalFrame*, const String&);
182 bool OpenJavaScriptPrompt(LocalFrame*, 182 bool OpenJavaScriptPrompt(LocalFrame*,
183 const String& message, 183 const String& message,
184 const String& default_value, 184 const String& default_value,
185 String& result); 185 String& result);
186 virtual void SetStatusbarText(const String&) = 0;
187 virtual bool TabsToLinks() = 0; 186 virtual bool TabsToLinks() = 0;
188 187
189 virtual void* WebView() const = 0; 188 virtual void* WebView() const = 0;
190 189
191 // Methods used by PlatformChromeClient. 190 // Methods used by PlatformChromeClient.
192 virtual WebScreenInfo GetScreenInfo() const = 0; 191 virtual WebScreenInfo GetScreenInfo() const = 0;
193 virtual void SetCursor(const Cursor&, LocalFrame* local_root) = 0; 192 virtual void SetCursor(const Cursor&, LocalFrame* local_root) = 0;
194 // End methods used by PlatformChromeClient. 193 // End methods used by PlatformChromeClient.
195 194
196 virtual void SetCursorOverridden(bool) = 0; 195 virtual void SetCursorOverridden(bool) = 0;
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 WeakMember<Node> last_mouse_over_node_; 398 WeakMember<Node> last_mouse_over_node_;
400 LayoutPoint last_tool_tip_point_; 399 LayoutPoint last_tool_tip_point_;
401 String last_tool_tip_text_; 400 String last_tool_tip_text_;
402 401
403 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 402 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
404 }; 403 };
405 404
406 } // namespace blink 405 } // namespace blink
407 406
408 #endif // ChromeClient_h 407 #endif // ChromeClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoader.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698