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

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

Issue 249633002: Detect <link rel='manifest'> and notify embedder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: error 500 Created 6 years, 7 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebRemoteFrameImpl_h 5 #ifndef WebRemoteFrameImpl_h
6 #define WebRemoteFrameImpl_h 6 #define WebRemoteFrameImpl_h
7 7
8 #include "public/web/WebRemoteFrame.h" 8 #include "public/web/WebRemoteFrame.h"
9 #include "wtf/RefCounted.h" 9 #include "wtf/RefCounted.h"
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 virtual WebFrame* top() const OVERRIDE; 47 virtual WebFrame* top() const OVERRIDE;
48 virtual WebFrame* previousSibling() const OVERRIDE; 48 virtual WebFrame* previousSibling() const OVERRIDE;
49 virtual WebFrame* nextSibling() const OVERRIDE; 49 virtual WebFrame* nextSibling() const OVERRIDE;
50 virtual WebFrame* firstChild() const OVERRIDE; 50 virtual WebFrame* firstChild() const OVERRIDE;
51 virtual WebFrame* lastChild() const OVERRIDE; 51 virtual WebFrame* lastChild() const OVERRIDE;
52 virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE; 52 virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE;
53 virtual WebFrame* traverseNext(bool wrap) const OVERRIDE; 53 virtual WebFrame* traverseNext(bool wrap) const OVERRIDE;
54 virtual WebFrame* findChildByName(const WebString&) const OVERRIDE; 54 virtual WebFrame* findChildByName(const WebString&) const OVERRIDE;
55 virtual WebDocument document() const OVERRIDE; 55 virtual WebDocument document() const OVERRIDE;
56 virtual WebPerformance performance() const OVERRIDE; 56 virtual WebPerformance performance() const OVERRIDE;
57 virtual WebURL manifestURL() const OVERRIDE;
57 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; 58 virtual bool dispatchBeforeUnloadEvent() OVERRIDE;
58 virtual void dispatchUnloadEvent() OVERRIDE; 59 virtual void dispatchUnloadEvent() OVERRIDE;
59 virtual NPObject* windowObject() const OVERRIDE; 60 virtual NPObject* windowObject() const OVERRIDE;
60 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; 61 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE;
61 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE RRIDE; 62 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE RRIDE;
62 virtual void executeScript(const WebScriptSource&) OVERRIDE; 63 virtual void executeScript(const WebScriptSource&) OVERRIDE;
63 virtual void executeScriptInIsolatedWorld( 64 virtual void executeScriptInIsolatedWorld(
64 int worldID, const WebScriptSource* sources, unsigned numSources, 65 int worldID, const WebScriptSource* sources, unsigned numSources,
65 int extensionGroup) OVERRIDE; 66 int extensionGroup) OVERRIDE;
66 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr igin&) OVERRIDE; 67 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr igin&) OVERRIDE;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE; 173 virtual WebString markerTextForListItem(const WebElement&) const OVERRIDE;
173 virtual WebRect selectionBoundsRect() const OVERRIDE; 174 virtual WebRect selectionBoundsRect() const OVERRIDE;
174 175
175 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const OVERRIDE; 176 virtual bool selectionStartHasSpellingMarkerFor(int from, int length) const OVERRIDE;
176 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE ; 177 virtual WebString layerTreeAsText(bool showDebugInfo = false) const OVERRIDE ;
177 }; 178 };
178 179
179 } // namespace blink 180 } // namespace blink
180 181
181 #endif // WebRemoteFrameImpl_h 182 #endif // WebRemoteFrameImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698