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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 220 |
221 virtual WebString contentAsText(size_t maxChars) const OVERRIDE; | 221 virtual WebString contentAsText(size_t maxChars) const OVERRIDE; |
222 virtual WebString contentAsMarkup() const OVERRIDE; | 222 virtual WebString contentAsMarkup() const OVERRIDE; |
223 virtual WebString renderTreeAsText(RenderAsTextControls toShow = RenderAsTex
tNormal) const OVERRIDE; | 223 virtual WebString renderTreeAsText(RenderAsTextControls toShow = RenderAsTex
tNormal) const OVERRIDE; |
224 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; | 224 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; |
225 virtual WebRect selectionBoundsRect() const OVERRIDE; | 225 virtual WebRect selectionBoundsRect() const OVERRIDE; |
226 | 226 |
227 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
OVERRIDE; | 227 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const
OVERRIDE; |
228 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE
; | 228 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE
; |
229 | 229 |
| 230 virtual void requestManifest(WebManifestRequest&) const OVERRIDE; |
| 231 |
230 // WebLocalFrame methods: | 232 // WebLocalFrame methods: |
231 virtual void addStyleSheetByURL(const WebString& url) OVERRIDE; | 233 virtual void addStyleSheetByURL(const WebString& url) OVERRIDE; |
232 | 234 |
233 void willDetachParent(); | 235 void willDetachParent(); |
234 | 236 |
235 static WebLocalFrameImpl* create(WebFrameClient*); | 237 static WebLocalFrameImpl* create(WebFrameClient*); |
236 virtual ~WebLocalFrameImpl(); | 238 virtual ~WebLocalFrameImpl(); |
237 | 239 |
238 PassRefPtr<blink::LocalFrame> initializeWebCoreFrame(blink::FrameHost*, blin
k::FrameOwner*, const AtomicString& name, const AtomicString& fallbackName); | 240 PassRefPtr<blink::LocalFrame> initializeWebCoreFrame(blink::FrameHost*, blin
k::FrameOwner*, const AtomicString& name, const AtomicString& fallbackName); |
239 | 241 |
(...skipping 115 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 |