| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "web/ExternalPopupMenu.h" | 32 #include "web/ExternalPopupMenu.h" |
| 33 | 33 |
| 34 #include "core/frame/FrameHost.h" | 34 #include "core/frame/FrameHost.h" |
| 35 #include "core/frame/FrameView.h" | 35 #include "core/frame/FrameView.h" |
| 36 #include "core/frame/LocalFrame.h" | 36 #include "core/frame/LocalFrame.h" |
| 37 #include "core/frame/PinchViewport.h" | 37 #include "core/frame/PinchViewport.h" |
| 38 #include "core/html/forms/PopupMenuClient.h" |
| 38 #include "core/page/Page.h" | 39 #include "core/page/Page.h" |
| 39 #include "platform/PopupMenuClient.h" | |
| 40 #include "platform/geometry/FloatQuad.h" | 40 #include "platform/geometry/FloatQuad.h" |
| 41 #include "platform/geometry/IntPoint.h" | 41 #include "platform/geometry/IntPoint.h" |
| 42 #include "platform/text/TextDirection.h" | 42 #include "platform/text/TextDirection.h" |
| 43 #include "public/platform/WebVector.h" | 43 #include "public/platform/WebVector.h" |
| 44 #include "public/web/WebExternalPopupMenu.h" | 44 #include "public/web/WebExternalPopupMenu.h" |
| 45 #include "public/web/WebFrameClient.h" | 45 #include "public/web/WebFrameClient.h" |
| 46 #include "public/web/WebMenuItemInfo.h" | 46 #include "public/web/WebMenuItemInfo.h" |
| 47 #include "public/web/WebPopupMenuInfo.h" | 47 #include "public/web/WebPopupMenuInfo.h" |
| 48 #include "web/WebLocalFrameImpl.h" | 48 #include "web/WebLocalFrameImpl.h" |
| 49 #include "web/WebViewImpl.h" | 49 #include "web/WebViewImpl.h" |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 if (popupMenuClient.itemStyle(i).isDisplayNone()) | 254 if (popupMenuClient.itemStyle(i).isDisplayNone()) |
| 255 continue; | 255 continue; |
| 256 if (popupMenuItemIndex == i) | 256 if (popupMenuItemIndex == i) |
| 257 return indexTracker; | 257 return indexTracker; |
| 258 ++indexTracker; | 258 ++indexTracker; |
| 259 } | 259 } |
| 260 return -1; | 260 return -1; |
| 261 } | 261 } |
| 262 | 262 |
| 263 } // namespace blink | 263 } // namespace blink |
| OLD | NEW |