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

Side by Side Diff: Source/web/WebLocalFrameImpl.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 /* 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 virtual WebFrame* top() const OVERRIDE; 110 virtual WebFrame* top() const OVERRIDE;
111 virtual WebFrame* previousSibling() const OVERRIDE; 111 virtual WebFrame* previousSibling() const OVERRIDE;
112 virtual WebFrame* nextSibling() const OVERRIDE; 112 virtual WebFrame* nextSibling() const OVERRIDE;
113 virtual WebFrame* firstChild() const OVERRIDE; 113 virtual WebFrame* firstChild() const OVERRIDE;
114 virtual WebFrame* lastChild() const OVERRIDE; 114 virtual WebFrame* lastChild() const OVERRIDE;
115 virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE; 115 virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE;
116 virtual WebFrame* traverseNext(bool wrap) const OVERRIDE; 116 virtual WebFrame* traverseNext(bool wrap) const OVERRIDE;
117 virtual WebFrame* findChildByName(const WebString&) const OVERRIDE; 117 virtual WebFrame* findChildByName(const WebString&) const OVERRIDE;
118 virtual WebDocument document() const OVERRIDE; 118 virtual WebDocument document() const OVERRIDE;
119 virtual WebPerformance performance() const OVERRIDE; 119 virtual WebPerformance performance() const OVERRIDE;
120 virtual WebURL manifestURL() const OVERRIDE;
120 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; 121 virtual bool dispatchBeforeUnloadEvent() OVERRIDE;
121 virtual void dispatchUnloadEvent() OVERRIDE; 122 virtual void dispatchUnloadEvent() OVERRIDE;
122 virtual NPObject* windowObject() const OVERRIDE; 123 virtual NPObject* windowObject() const OVERRIDE;
123 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; 124 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE;
124 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE RRIDE; 125 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE RRIDE;
125 virtual void executeScript(const WebScriptSource&) OVERRIDE; 126 virtual void executeScript(const WebScriptSource&) OVERRIDE;
126 virtual void executeScriptInIsolatedWorld( 127 virtual void executeScriptInIsolatedWorld(
127 int worldID, const WebScriptSource* sources, unsigned numSources, 128 int worldID, const WebScriptSource* sources, unsigned numSources,
128 int extensionGroup) OVERRIDE; 129 int extensionGroup) OVERRIDE;
129 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr igin&) OVERRIDE; 130 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr igin&) OVERRIDE;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 NotificationPresenterImpl m_notificationPresenter; 376 NotificationPresenterImpl m_notificationPresenter;
376 377
377 UserMediaClientImpl m_userMediaClientImpl; 378 UserMediaClientImpl m_userMediaClientImpl;
378 }; 379 };
379 380
380 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame()); 381 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(), frame.isWebLocalFrame());
381 382
382 } // namespace blink 383 } // namespace blink
383 384
384 #endif 385 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698