| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 virtual bool handleInputEvent(const WebInputEvent&); | 100 virtual bool handleInputEvent(const WebInputEvent&); |
| 101 virtual void mouseCaptureLost(); | 101 virtual void mouseCaptureLost(); |
| 102 virtual void setFocus(bool enable); | 102 virtual void setFocus(bool enable); |
| 103 virtual bool setComposition( | 103 virtual bool setComposition( |
| 104 const WebString& text, | 104 const WebString& text, |
| 105 const WebVector<WebCompositionUnderline>& underlines, | 105 const WebVector<WebCompositionUnderline>& underlines, |
| 106 int selectionStart, | 106 int selectionStart, |
| 107 int selectionEnd); | 107 int selectionEnd); |
| 108 virtual bool confirmComposition(); | 108 virtual bool confirmComposition(); |
| 109 virtual bool confirmComposition(const WebString& text); | 109 virtual bool confirmComposition(const WebString& text); |
| 110 virtual bool compositionRange(unsigned* location, unsigned* length); |
| 110 virtual WebTextInputType textInputType(); | 111 virtual WebTextInputType textInputType(); |
| 111 virtual WebRect caretOrSelectionBounds(); | 112 virtual WebRect caretOrSelectionBounds(); |
| 113 virtual bool caretOrSelectionRange(unsigned* location, unsigned* length); |
| 112 virtual void setTextDirection(WebTextDirection direction); | 114 virtual void setTextDirection(WebTextDirection direction); |
| 113 virtual bool isAcceleratedCompositingActive() const; | 115 virtual bool isAcceleratedCompositingActive() const; |
| 114 | 116 |
| 115 // WebView methods: | 117 // WebView methods: |
| 116 virtual void initializeMainFrame(WebFrameClient*); | 118 virtual void initializeMainFrame(WebFrameClient*); |
| 117 virtual WebSettings* settings(); | 119 virtual WebSettings* settings(); |
| 118 virtual WebString pageEncoding() const; | 120 virtual WebString pageEncoding() const; |
| 119 virtual void setPageEncoding(const WebString& encoding); | 121 virtual void setPageEncoding(const WebString& encoding); |
| 120 virtual bool isTransparent() const; | 122 virtual bool isTransparent() const; |
| 121 virtual void setIsTransparent(bool value); | 123 virtual void setIsTransparent(bool value); |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 // the compositor has been turned on, we need to instantiate it | 547 // the compositor has been turned on, we need to instantiate it |
| 546 // early. This member holds on to the GC3D in this case. | 548 // early. This member holds on to the GC3D in this case. |
| 547 RefPtr<WebCore::GraphicsContext3D> m_temporaryOnscreenGraphicsContext3D; | 549 RefPtr<WebCore::GraphicsContext3D> m_temporaryOnscreenGraphicsContext3D; |
| 548 OwnPtr<DeviceOrientationClientProxy> m_deviceOrientationClientProxy; | 550 OwnPtr<DeviceOrientationClientProxy> m_deviceOrientationClientProxy; |
| 549 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; | 551 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
| 550 }; | 552 }; |
| 551 | 553 |
| 552 } // namespace WebKit | 554 } // namespace WebKit |
| 553 | 555 |
| 554 #endif | 556 #endif |
| OLD | NEW |