| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 virtual void removeChild(WebFrame*) OVERRIDE; | 104 virtual void removeChild(WebFrame*) OVERRIDE; |
| 105 virtual WebFrame* parent() const OVERRIDE; | 105 virtual WebFrame* parent() const OVERRIDE; |
| 106 virtual WebFrame* top() const OVERRIDE; | 106 virtual WebFrame* top() const OVERRIDE; |
| 107 virtual WebFrame* previousSibling() const OVERRIDE; | 107 virtual WebFrame* previousSibling() const OVERRIDE; |
| 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; | |
| 115 virtual WebDocument document() const OVERRIDE; | 114 virtual WebDocument document() const OVERRIDE; |
| 116 virtual WebPerformance performance() const OVERRIDE; | 115 virtual WebPerformance performance() const OVERRIDE; |
| 117 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; | 116 virtual bool dispatchBeforeUnloadEvent() OVERRIDE; |
| 118 virtual NPObject* windowObject() const OVERRIDE; | 117 virtual NPObject* windowObject() const OVERRIDE; |
| 119 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; | 118 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; |
| 120 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE
RRIDE; | 119 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE
RRIDE; |
| 121 virtual void executeScript(const WebScriptSource&) OVERRIDE; | 120 virtual void executeScript(const WebScriptSource&) OVERRIDE; |
| 122 virtual void executeScriptInIsolatedWorld( | 121 virtual void executeScriptInIsolatedWorld( |
| 123 int worldID, const WebScriptSource* sources, unsigned numSources, | 122 int worldID, const WebScriptSource* sources, unsigned numSources, |
| 124 int extensionGroup) OVERRIDE; | 123 int extensionGroup) OVERRIDE; |
| (...skipping 239 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. | 363 // Stores the additional input events offset and scale when device metrics e
mulation is enabled. |
| 365 WebCore::IntSize m_inputEventsOffsetForEmulation; | 364 WebCore::IntSize m_inputEventsOffsetForEmulation; |
| 366 float m_inputEventsScaleFactorForEmulation; | 365 float m_inputEventsScaleFactorForEmulation; |
| 367 }; | 366 }; |
| 368 | 367 |
| 369 DEFINE_TYPE_CASTS(WebFrameImpl, WebFrame, frame, true, true); | 368 DEFINE_TYPE_CASTS(WebFrameImpl, WebFrame, frame, true, true); |
| 370 | 369 |
| 371 } // namespace blink | 370 } // namespace blink |
| 372 | 371 |
| 373 #endif | 372 #endif |
| OLD | NEW |