| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |