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

Side by Side Diff: Source/WebKit/chromium/public/WebWidget.h

Issue 9384018: Merge 106401 (part of http://crbug.com/111266) - (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 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 | « Source/WebKit/chromium/ChangeLog ('k') | Source/WebKit/chromium/src/WebViewImpl.h » ('j') | 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // Calling WebWidgetClient::requestPointerLock() will result in one 174 // Calling WebWidgetClient::requestPointerLock() will result in one
175 // return call to didAcquirePointerLock() or didNotAcquirePointerLock(). 175 // return call to didAcquirePointerLock() or didNotAcquirePointerLock().
176 virtual void didAcquirePointerLock() { } 176 virtual void didAcquirePointerLock() { }
177 virtual void didNotAcquirePointerLock() { } 177 virtual void didNotAcquirePointerLock() { }
178 178
179 // Pointer lock was held, but has been lost. This may be due to a 179 // Pointer lock was held, but has been lost. This may be due to a
180 // request via WebWidgetClient::requestPointerUnlock(), or for other 180 // request via WebWidgetClient::requestPointerUnlock(), or for other
181 // reasons such as the user exiting lock, window focus changing, etc. 181 // reasons such as the user exiting lock, window focus changing, etc.
182 virtual void didLosePointerLock() { } 182 virtual void didLosePointerLock() { }
183 183
184 // Informs the WebWidget that the resizer rect changed. Happens for example
185 // on mac, when a widget appears below the WebWidget without changing the
186 // WebWidget's size (WebWidget::resize() automatically checks the resizer
187 // rect.)
188 virtual void didChangeWindowResizerRect() { }
189
184 protected: 190 protected:
185 ~WebWidget() { } 191 ~WebWidget() { }
186 }; 192 };
187 193
188 } // namespace WebKit 194 } // namespace WebKit
189 195
190 #endif 196 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/ChangeLog ('k') | Source/WebKit/chromium/src/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698