| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 virtual WebFrame* nextSibling() const OVERRIDE; | 108 virtual WebFrame* nextSibling() const OVERRIDE; |
| 109 virtual WebFrame* firstChild() const OVERRIDE; | 109 virtual WebFrame* firstChild() const OVERRIDE; |
| 110 virtual WebFrame* lastChild() const OVERRIDE; | 110 virtual WebFrame* lastChild() const OVERRIDE; |
| 111 virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE; | 111 virtual WebFrame* traversePrevious(bool wrap) const OVERRIDE; |
| 112 virtual WebFrame* traverseNext(bool wrap) const OVERRIDE; | 112 virtual WebFrame* traverseNext(bool wrap) const OVERRIDE; |
| 113 virtual WebFrame* findChildByName(const WebString&) const OVERRIDE; | 113 virtual WebFrame* findChildByName(const WebString&) const OVERRIDE; |
| 114 virtual WebFrame* findChildByExpression(const WebString&) const OVERRIDE; | 114 virtual WebFrame* findChildByExpression(const WebString&) const OVERRIDE; |
| 115 virtual WebDocument document() const OVERRIDE; | 115 virtual WebDocument document() const OVERRIDE; |
| 116 virtual WebPerformance performance() const OVERRIDE; | 116 virtual WebPerformance performance() const OVERRIDE; |
| 117 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; | 117 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; |
| 118 virtual void dispatchUnloadEvent() OVERRIDE; |
| 118 virtual NPObject* windowObject() const OVERRIDE; | 119 virtual NPObject* windowObject() const OVERRIDE; |
| 119 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; | 120 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; |
| 120 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE
RRIDE; | 121 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE
RRIDE; |
| 121 virtual void executeScript(const WebScriptSource&) OVERRIDE; | 122 virtual void executeScript(const WebScriptSource&) OVERRIDE; |
| 122 virtual void executeScriptInIsolatedWorld( | 123 virtual void executeScriptInIsolatedWorld( |
| 123 int worldID, const WebScriptSource* sources, unsigned numSources, | 124 int worldID, const WebScriptSource* sources, unsigned numSources, |
| 124 int extensionGroup) OVERRIDE; | 125 int extensionGroup) OVERRIDE; |
| 125 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr
igin&) OVERRIDE; | 126 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr
igin&) OVERRIDE; |
| 126 virtual void setIsolatedWorldContentSecurityPolicy(int worldID, const WebStr
ing&) OVERRIDE; | 127 virtual void setIsolatedWorldContentSecurityPolicy(int worldID, const WebStr
ing&) OVERRIDE; |
| 127 virtual void addMessageToConsole(const WebConsoleMessage&) OVERRIDE; | 128 virtual void addMessageToConsole(const WebConsoleMessage&) OVERRIDE; |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. | 365 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. |
| 365 WebCore::IntSize m_inputEventsOffsetForEmulation; | 366 WebCore::IntSize m_inputEventsOffsetForEmulation; |
| 366 float m_inputEventsScaleFactorForEmulation; | 367 float m_inputEventsScaleFactorForEmulation; |
| 367 }; | 368 }; |
| 368 | 369 |
| 369 DEFINE_TYPE_CASTS(WebFrameImpl, WebFrame, frame, true, true); | 370 DEFINE_TYPE_CASTS(WebFrameImpl, WebFrame, frame, true, true); |
| 370 | 371 |
| 371 } // namespace blink | 372 } // namespace blink |
| 372 | 373 |
| 373 #endif | 374 #endif |
| OLD | NEW |