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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 | 221 |
222 virtual WebString contentAsText(size_t maxChars) const OVERRIDE; | 222 virtual WebString contentAsText(size_t maxChars) const OVERRIDE; |
223 virtual WebString contentAsMarkup() const OVERRIDE; | 223 virtual WebString contentAsMarkup() const OVERRIDE; |
224 virtual WebString renderTreeAsText(RenderAsTextControls toShow = RenderAsTex
tNormal) const OVERRIDE; | 224 virtual WebString renderTreeAsText(RenderAsTextControls toShow = RenderAsTex
tNormal) const OVERRIDE; |
225 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; | 225 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; |
226 virtual WebRect selectionBoundsRect() const OVERRIDE; | 226 virtual WebRect selectionBoundsRect() const OVERRIDE; |
227 | 227 |
228 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
OVERRIDE; | 228 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
OVERRIDE; |
229 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE
; | 229 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE
; |
230 | 230 |
| 231 virtual void requestManifest() OVERRIDE; |
| 232 |
231 // WebLocalFrame methods: | 233 // WebLocalFrame methods: |
232 virtual void addStyleSheetByURL(const WebString& url) OVERRIDE; | 234 virtual void addStyleSheetByURL(const WebString& url) OVERRIDE; |
233 | 235 |
234 void willDetachParent(); | 236 void willDetachParent(); |
235 | 237 |
236 static WebLocalFrameImpl* create(WebFrameClient*); | 238 static WebLocalFrameImpl* create(WebFrameClient*); |
237 virtual ~WebLocalFrameImpl(); | 239 virtual ~WebLocalFrameImpl(); |
238 | 240 |
239 PassRefPtr<LocalFrame> initializeCoreFrame(FrameHost*, FrameOwner*, const At
omicString& name, const AtomicString& fallbackName); | 241 PassRefPtr<LocalFrame> initializeCoreFrame(FrameHost*, FrameOwner*, const At
omicString& name, const AtomicString& fallbackName); |
240 | 242 |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 UserMediaClientImpl m_userMediaClientImpl; | 358 UserMediaClientImpl m_userMediaClientImpl; |
357 | 359 |
358 OwnPtrWillBePersistent<GeolocationClientProxy> m_geolocationClientProxy; | 360 OwnPtrWillBePersistent<GeolocationClientProxy> m_geolocationClientProxy; |
359 }; | 361 }; |
360 | 362 |
361 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 363 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
362 | 364 |
363 } // namespace blink | 365 } // namespace blink |
364 | 366 |
365 #endif | 367 #endif |
OLD | NEW |