Commit 0eb9b8b6 authored by avi@chromium.org's avatar avi@chromium.org

Add link to SPIs.

BUG=92892
TEST=no code change

Review URL: http://codereview.chromium.org/7647030

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96841 0039d316-1c4b-4281-b951-d872f2087c98
parent b4a0ef79
......@@ -111,7 +111,13 @@ NSCursor* CreateCustomCursor(const std::vector<char>& custom_data,
} // namespace
// We're matching Safari's cursor choices; see platform/mac/CursorMac.mm
// We're (mostly) matching Safari's cursor choices; see
// platform/mac/CursorMac.mm . Note that Safari uses some magic in wkCursor to
// access private system cursors. A sample implementation using the same
// technique can be found attached to http://crbug.com/92892 . However, it's not
// clear that accessing system cursors this way is enough of a gain to risk
// using SPIs. Until the benefits more clearly outweigh the risks, API is all
// that will be used.
NSCursor* WebCursor::GetCursor() const {
switch (type_) {
case WebCursorInfo::TypePointer:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment