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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 virtual WebRemoteFrame* toWebRemoteFrame() OVERRIDE; | 83 virtual WebRemoteFrame* toWebRemoteFrame() OVERRIDE; |
84 virtual void close() OVERRIDE; | 84 virtual void close() OVERRIDE; |
85 virtual WebString uniqueName() const OVERRIDE; | 85 virtual WebString uniqueName() const OVERRIDE; |
86 virtual WebString assignedName() const OVERRIDE; | 86 virtual WebString assignedName() const OVERRIDE; |
87 virtual void setName(const WebString&) OVERRIDE; | 87 virtual void setName(const WebString&) OVERRIDE; |
88 virtual WebVector<WebIconURL> iconURLs(int iconTypesMask) const OVERRIDE; | 88 virtual WebVector<WebIconURL> iconURLs(int iconTypesMask) const OVERRIDE; |
89 virtual void setIsRemote(bool) OVERRIDE; | 89 virtual void setIsRemote(bool) OVERRIDE; |
90 virtual void setRemoteWebLayer(WebLayer*) OVERRIDE; | 90 virtual void setRemoteWebLayer(WebLayer*) OVERRIDE; |
91 virtual void setPermissionClient(WebPermissionClient*) OVERRIDE; | 91 virtual void setPermissionClient(WebPermissionClient*) OVERRIDE; |
92 virtual void setSharedWorkerRepositoryClient(WebSharedWorkerRepositoryClient
*) OVERRIDE; | 92 virtual void setSharedWorkerRepositoryClient(WebSharedWorkerRepositoryClient
*) OVERRIDE; |
| 93 virtual void setAccessibilityEnabled(bool) OVERRIDE; |
| 94 virtual void setInlineTextBoxAccessibilityEnabled(bool) OVERRIDE; |
93 virtual WebSize scrollOffset() const OVERRIDE; | 95 virtual WebSize scrollOffset() const OVERRIDE; |
94 virtual void setScrollOffset(const WebSize&) OVERRIDE; | 96 virtual void setScrollOffset(const WebSize&) OVERRIDE; |
95 virtual WebSize minimumScrollOffset() const OVERRIDE; | 97 virtual WebSize minimumScrollOffset() const OVERRIDE; |
96 virtual WebSize maximumScrollOffset() const OVERRIDE; | 98 virtual WebSize maximumScrollOffset() const OVERRIDE; |
97 virtual WebSize contentsSize() const OVERRIDE; | 99 virtual WebSize contentsSize() const OVERRIDE; |
98 virtual bool hasVisibleContent() const OVERRIDE; | 100 virtual bool hasVisibleContent() const OVERRIDE; |
99 virtual WebRect visibleContentRect() const OVERRIDE; | 101 virtual WebRect visibleContentRect() const OVERRIDE; |
100 virtual bool hasHorizontalScrollbar() const OVERRIDE; | 102 virtual bool hasHorizontalScrollbar() const OVERRIDE; |
101 virtual bool hasVerticalScrollbar() const OVERRIDE; | 103 virtual bool hasVerticalScrollbar() const OVERRIDE; |
102 virtual WebView* view() const OVERRIDE; | 104 virtual WebView* view() const OVERRIDE; |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 UserMediaClientImpl m_userMediaClientImpl; | 357 UserMediaClientImpl m_userMediaClientImpl; |
356 | 358 |
357 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; | 359 OwnPtr<GeolocationClientProxy> m_geolocationClientProxy; |
358 }; | 360 }; |
359 | 361 |
360 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 362 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
361 | 363 |
362 } // namespace blink | 364 } // namespace blink |
363 | 365 |
364 #endif | 366 #endif |
OLD | NEW |