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