Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(767)

Side by Side Diff: Source/web/WebLocalFrameImpl.h

Issue 295063002: [NotLanded] Implement the fetching algorithm of the Web Manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698