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 29 matching lines...) Expand all Loading... |
40 #include "public/platform/WebGestureCurveTarget.h" | 40 #include "public/platform/WebGestureCurveTarget.h" |
41 #include "public/platform/WebLayer.h" | 41 #include "public/platform/WebLayer.h" |
42 #include "public/platform/WebPoint.h" | 42 #include "public/platform/WebPoint.h" |
43 #include "public/platform/WebRect.h" | 43 #include "public/platform/WebRect.h" |
44 #include "public/platform/WebSize.h" | 44 #include "public/platform/WebSize.h" |
45 #include "public/platform/WebString.h" | 45 #include "public/platform/WebString.h" |
46 #include "public/platform/WebVector.h" | 46 #include "public/platform/WebVector.h" |
47 #include "public/web/WebInputEvent.h" | 47 #include "public/web/WebInputEvent.h" |
48 #include "public/web/WebNavigationPolicy.h" | 48 #include "public/web/WebNavigationPolicy.h" |
49 #include "public/web/WebView.h" | 49 #include "public/web/WebView.h" |
50 #include "web/BackForwardClientImpl.h" | |
51 #include "web/ChromeClientImpl.h" | 50 #include "web/ChromeClientImpl.h" |
52 #include "web/ContextMenuClientImpl.h" | 51 #include "web/ContextMenuClientImpl.h" |
53 #include "web/DragClientImpl.h" | 52 #include "web/DragClientImpl.h" |
54 #include "web/EditorClientImpl.h" | 53 #include "web/EditorClientImpl.h" |
55 #include "web/InspectorClientImpl.h" | 54 #include "web/InspectorClientImpl.h" |
56 #include "web/MediaKeysClientImpl.h" | 55 #include "web/MediaKeysClientImpl.h" |
57 #include "web/PageOverlayList.h" | 56 #include "web/PageOverlayList.h" |
58 #include "web/PageScaleConstraintsSet.h" | 57 #include "web/PageScaleConstraintsSet.h" |
59 #include "web/PageWidgetDelegate.h" | 58 #include "web/PageWidgetDelegate.h" |
60 #include "web/SpellCheckerClientImpl.h" | 59 #include "web/SpellCheckerClientImpl.h" |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 | 602 |
604 WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.) | 603 WebViewClient* m_client; // Can be 0 (e.g. unittests, shared workers, etc.) |
605 WebAutofillClient* m_autofillClient; | 604 WebAutofillClient* m_autofillClient; |
606 WebSpellCheckClient* m_spellCheckClient; | 605 WebSpellCheckClient* m_spellCheckClient; |
607 | 606 |
608 ChromeClientImpl m_chromeClientImpl; | 607 ChromeClientImpl m_chromeClientImpl; |
609 ContextMenuClientImpl m_contextMenuClientImpl; | 608 ContextMenuClientImpl m_contextMenuClientImpl; |
610 DragClientImpl m_dragClientImpl; | 609 DragClientImpl m_dragClientImpl; |
611 EditorClientImpl m_editorClientImpl; | 610 EditorClientImpl m_editorClientImpl; |
612 InspectorClientImpl m_inspectorClientImpl; | 611 InspectorClientImpl m_inspectorClientImpl; |
613 BackForwardClientImpl m_backForwardClientImpl; | |
614 SpellCheckerClientImpl m_spellCheckerClientImpl; | 612 SpellCheckerClientImpl m_spellCheckerClientImpl; |
615 StorageClientImpl m_storageClientImpl; | 613 StorageClientImpl m_storageClientImpl; |
616 | 614 |
617 WebSize m_size; | 615 WebSize m_size; |
618 // If true, automatically resize the render view around its content. | 616 // If true, automatically resize the render view around its content. |
619 bool m_shouldAutoResize; | 617 bool m_shouldAutoResize; |
620 // The lower bound on the size when auto-resizing. | 618 // The lower bound on the size when auto-resizing. |
621 IntSize m_minAutoSize; | 619 IntSize m_minAutoSize; |
622 // The upper bound on the size when auto-resizing. | 620 // The upper bound on the size when auto-resizing. |
623 IntSize m_maxAutoSize; | 621 IntSize m_maxAutoSize; |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 float m_topControlsLayoutHeight; | 750 float m_topControlsLayoutHeight; |
753 }; | 751 }; |
754 | 752 |
755 // We have no ways to check if the specified WebView is an instance of | 753 // We have no ways to check if the specified WebView is an instance of |
756 // WebViewImpl because WebViewImpl is the only implementation of WebView. | 754 // WebViewImpl because WebViewImpl is the only implementation of WebView. |
757 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); | 755 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); |
758 | 756 |
759 } // namespace blink | 757 } // namespace blink |
760 | 758 |
761 #endif | 759 #endif |
OLD | NEW |