| OLD | NEW |
| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 TypeSouthResize, | 60 TypeSouthResize, |
| 61 TypeSouthEastResize, | 61 TypeSouthEastResize, |
| 62 TypeSouthWestResize, | 62 TypeSouthWestResize, |
| 63 TypeWestResize, | 63 TypeWestResize, |
| 64 TypeNorthSouthResize, | 64 TypeNorthSouthResize, |
| 65 TypeEastWestResize, | 65 TypeEastWestResize, |
| 66 TypeNorthEastSouthWestResize, | 66 TypeNorthEastSouthWestResize, |
| 67 TypeNorthWestSouthEastResize, | 67 TypeNorthWestSouthEastResize, |
| 68 TypeColumnResize, | 68 TypeColumnResize, |
| 69 TypeRowResize, | 69 TypeRowResize, |
| 70 #ifdef WIN32 |
| 70 TypeMiddlePanning, | 71 TypeMiddlePanning, |
| 71 TypeEastPanning, | 72 TypeEastPanning, |
| 72 TypeNorthPanning, | 73 TypeNorthPanning, |
| 73 TypeNorthEastPanning, | 74 TypeNorthEastPanning, |
| 74 TypeNorthWestPanning, | 75 TypeNorthWestPanning, |
| 75 TypeSouthPanning, | 76 TypeSouthPanning, |
| 76 TypeSouthEastPanning, | 77 TypeSouthEastPanning, |
| 77 TypeSouthWestPanning, | 78 TypeSouthWestPanning, |
| 78 TypeWestPanning, | 79 TypeWestPanning, |
| 80 #endif |
| 79 TypeMove, | 81 TypeMove, |
| 80 TypeVerticalText, | 82 TypeVerticalText, |
| 81 TypeCell, | 83 TypeCell, |
| 82 TypeContextMenu, | 84 TypeContextMenu, |
| 83 TypeAlias, | 85 TypeAlias, |
| 84 TypeProgress, | 86 TypeProgress, |
| 85 TypeNoDrop, | 87 TypeNoDrop, |
| 86 TypeCopy, | 88 TypeCopy, |
| 87 TypeNone, | 89 TypeNone, |
| 88 TypeNotAllowed, | 90 TypeNotAllowed, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 116 } | 118 } |
| 117 | 119 |
| 118 #if INSIDE_BLINK | 120 #if INSIDE_BLINK |
| 119 BLINK_PLATFORM_EXPORT explicit WebCursorInfo(const WebCore::Cursor&); | 121 BLINK_PLATFORM_EXPORT explicit WebCursorInfo(const WebCore::Cursor&); |
| 120 #endif | 122 #endif |
| 121 }; | 123 }; |
| 122 | 124 |
| 123 } // namespace blink | 125 } // namespace blink |
| 124 | 126 |
| 125 #endif | 127 #endif |
| OLD | NEW |