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

Side by Side Diff: third_party/WebKit/public/web/WebViewClient.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, 7 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
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 WebTextDirection supplemental_text_dir) {} 138 WebTextDirection supplemental_text_dir) {}
139 139
140 // Hide notifation popup for form validation messages. 140 // Hide notifation popup for form validation messages.
141 virtual void HideValidationMessage() {} 141 virtual void HideValidationMessage() {}
142 142
143 // Move the existing notifation popup to the new anchor position. 143 // Move the existing notifation popup to the new anchor position.
144 virtual void MoveValidationMessage(const WebRect& anchor_in_viewport) {} 144 virtual void MoveValidationMessage(const WebRect& anchor_in_viewport) {}
145 145
146 // UI ------------------------------------------------------------------ 146 // UI ------------------------------------------------------------------
147 147
148 // Called when script modifies window.status
149 virtual void SetStatusText(const WebString&) {}
150
151 // Called when hovering over an anchor with the given URL. 148 // Called when hovering over an anchor with the given URL.
152 virtual void SetMouseOverURL(const WebURL&) {} 149 virtual void SetMouseOverURL(const WebURL&) {}
153 150
154 // Called when keyboard focus switches to an anchor with the given URL. 151 // Called when keyboard focus switches to an anchor with the given URL.
155 virtual void SetKeyboardFocusURL(const WebURL&) {} 152 virtual void SetKeyboardFocusURL(const WebURL&) {}
156 153
157 // Called to determine if drag-n-drop operations may initiate a page 154 // Called to determine if drag-n-drop operations may initiate a page
158 // navigation. 155 // navigation.
159 virtual bool AcceptsLoadDrops() { return true; } 156 virtual bool AcceptsLoadDrops() { return true; }
160 157
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 bool page_changed) override {} 255 bool page_changed) override {}
259 void Show(WebNavigationPolicy) override {} 256 void Show(WebNavigationPolicy) override {}
260 virtual WebWidgetClient* WidgetClient() { return this; } 257 virtual WebWidgetClient* WidgetClient() { return this; }
261 258
262 protected: 259 protected:
263 }; 260 };
264 261
265 } // namespace blink 262 } // namespace blink
266 263
267 #endif 264 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698