| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString&
) override; | 109 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString&
) override; |
| 110 virtual void addMessageToConsole(const WebConsoleMessage&) override; | 110 virtual void addMessageToConsole(const WebConsoleMessage&) override; |
| 111 virtual void collectGarbage() override; | 111 virtual void collectGarbage() override; |
| 112 virtual bool checkIfRunInsecureContent(const WebURL&) const override; | 112 virtual bool checkIfRunInsecureContent(const WebURL&) const override; |
| 113 virtual v8::Handle<v8::Value> executeScriptAndReturnValue( | 113 virtual v8::Handle<v8::Value> executeScriptAndReturnValue( |
| 114 const WebScriptSource&) override; | 114 const WebScriptSource&) override; |
| 115 virtual void requestExecuteScriptAndReturnValue( | 115 virtual void requestExecuteScriptAndReturnValue( |
| 116 const WebScriptSource&, bool userGesture, WebScriptExecutionCallback*) o
verride; | 116 const WebScriptSource&, bool userGesture, WebScriptExecutionCallback*) o
verride; |
| 117 virtual void executeScriptInIsolatedWorld( | 117 virtual void executeScriptInIsolatedWorld( |
| 118 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, | 118 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, |
| 119 int extensionGroup, WebVector<v8::Local<v8::Value> >* results) override; | 119 int extensionGroup, WebVector<v8::Local<v8::Value>>* results) override; |
| 120 virtual void requestExecuteScriptInIsolatedWorld( | 120 virtual void requestExecuteScriptInIsolatedWorld( |
| 121 int worldID, const WebScriptSource* sourceIn, unsigned numSources, | 121 int worldID, const WebScriptSource* sourceIn, unsigned numSources, |
| 122 int extensionGroup, bool userGesture, WebScriptExecutionCallback*) overr
ide; | 122 int extensionGroup, bool userGesture, WebScriptExecutionCallback*) overr
ide; |
| 123 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled( | 123 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled( |
| 124 v8::Handle<v8::Function>, | 124 v8::Handle<v8::Function>, |
| 125 v8::Handle<v8::Value>, | 125 v8::Handle<v8::Value>, |
| 126 int argc, | 126 int argc, |
| 127 v8::Handle<v8::Value> argv[]) override; | 127 v8::Handle<v8::Value> argv[]) override; |
| 128 virtual v8::Local<v8::Context> mainWorldScriptContext() const override; | 128 virtual v8::Local<v8::Context> mainWorldScriptContext() const override; |
| 129 virtual void reload(bool ignoreCache) override; | 129 virtual void reload(bool ignoreCache) override; |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 GC_PLUGIN_IGNORE("340522") | 376 GC_PLUGIN_IGNORE("340522") |
| 377 Persistent<WebLocalFrameImpl> m_selfKeepAlive; | 377 Persistent<WebLocalFrameImpl> m_selfKeepAlive; |
| 378 #endif | 378 #endif |
| 379 }; | 379 }; |
| 380 | 380 |
| 381 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 381 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 382 | 382 |
| 383 } // namespace blink | 383 } // namespace blink |
| 384 | 384 |
| 385 #endif | 385 #endif |
| OLD | NEW |