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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 WebCore::IntSize m_maxAutoSize; | 642 WebCore::IntSize m_maxAutoSize; |
643 | 643 |
644 OwnPtr<WebCore::Page> m_page; | 644 OwnPtr<WebCore::Page> m_page; |
645 | 645 |
646 // An object that can be used to manipulate m_page->settings() without linki
ng | 646 // An object that can be used to manipulate m_page->settings() without linki
ng |
647 // against WebCore. This is lazily allocated the first time GetWebSettings() | 647 // against WebCore. This is lazily allocated the first time GetWebSettings() |
648 // is called. | 648 // is called. |
649 OwnPtr<WebSettingsImpl> m_webSettings; | 649 OwnPtr<WebSettingsImpl> m_webSettings; |
650 | 650 |
651 // A copy of the web drop data object we received from the browser. | 651 // A copy of the web drop data object we received from the browser. |
652 RefPtr<WebCore::DataObject> m_currentDragData; | 652 RefPtrWillBePersistent<WebCore::DataObject> m_currentDragData; |
653 | 653 |
654 // The point relative to the client area where the mouse was last pressed | 654 // The point relative to the client area where the mouse was last pressed |
655 // down. This is used by the drag client to determine what was under the | 655 // down. This is used by the drag client to determine what was under the |
656 // mouse when the drag was initiated. We need to track this here in | 656 // mouse when the drag was initiated. We need to track this here in |
657 // WebViewImpl since DragClient::startDrag does not pass the position the | 657 // WebViewImpl since DragClient::startDrag does not pass the position the |
658 // mouse was at when the drag was initiated, only the current point, which | 658 // mouse was at when the drag was initiated, only the current point, which |
659 // can be misleading as it is usually not over the element the user actually | 659 // can be misleading as it is usually not over the element the user actually |
660 // dragged by the time a drag is initiated. | 660 // dragged by the time a drag is initiated. |
661 WebPoint m_lastMouseDownPoint; | 661 WebPoint m_lastMouseDownPoint; |
662 | 662 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 Vector<WebHelperPluginImpl*> m_helperPluginsPendingClose; | 788 Vector<WebHelperPluginImpl*> m_helperPluginsPendingClose; |
789 }; | 789 }; |
790 | 790 |
791 // We have no ways to check if the specified WebView is an instance of | 791 // We have no ways to check if the specified WebView is an instance of |
792 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 792 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
793 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 793 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
794 | 794 |
795 } // namespace blink | 795 } // namespace blink |
796 | 796 |
797 #endif | 797 #endif |
OLD | NEW |