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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 virtual void dispatchUnloadEvent() OVERRIDE; | 107 virtual void dispatchUnloadEvent() OVERRIDE; |
108 virtual NPObject* windowObject() const OVERRIDE; | 108 virtual NPObject* windowObject() const OVERRIDE; |
109 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; | 109 virtual void bindToWindowObject(const WebString& name, NPObject*) OVERRIDE; |
110 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE
RRIDE; | 110 virtual void bindToWindowObject(const WebString& name, NPObject*, void*) OVE
RRIDE; |
111 virtual void executeScript(const WebScriptSource&) OVERRIDE; | 111 virtual void executeScript(const WebScriptSource&) OVERRIDE; |
112 virtual void executeScriptInIsolatedWorld( | 112 virtual void executeScriptInIsolatedWorld( |
113 int worldID, const WebScriptSource* sources, unsigned numSources, | 113 int worldID, const WebScriptSource* sources, unsigned numSources, |
114 int extensionGroup) OVERRIDE; | 114 int extensionGroup) OVERRIDE; |
115 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr
igin&) OVERRIDE; | 115 virtual void setIsolatedWorldSecurityOrigin(int worldID, const WebSecurityOr
igin&) OVERRIDE; |
116 virtual void setIsolatedWorldContentSecurityPolicy(int worldID, const WebStr
ing&) OVERRIDE; | 116 virtual void setIsolatedWorldContentSecurityPolicy(int worldID, const WebStr
ing&) OVERRIDE; |
| 117 virtual void setIsolatedWorldHumanReadableName(int worldID, const WebString&
) OVERRIDE; |
117 virtual void addMessageToConsole(const WebConsoleMessage&) OVERRIDE; | 118 virtual void addMessageToConsole(const WebConsoleMessage&) OVERRIDE; |
118 virtual void collectGarbage() OVERRIDE; | 119 virtual void collectGarbage() OVERRIDE; |
119 virtual bool checkIfRunInsecureContent(const WebURL&) const OVERRIDE; | 120 virtual bool checkIfRunInsecureContent(const WebURL&) const OVERRIDE; |
120 virtual v8::Handle<v8::Value> executeScriptAndReturnValue( | 121 virtual v8::Handle<v8::Value> executeScriptAndReturnValue( |
121 const WebScriptSource&) OVERRIDE; | 122 const WebScriptSource&) OVERRIDE; |
122 virtual void executeScriptInIsolatedWorld( | 123 virtual void executeScriptInIsolatedWorld( |
123 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, | 124 int worldID, const WebScriptSource* sourcesIn, unsigned numSources, |
124 int extensionGroup, WebVector<v8::Local<v8::Value> >* results) OVERRIDE; | 125 int extensionGroup, WebVector<v8::Local<v8::Value> >* results) OVERRIDE; |
125 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled( | 126 virtual v8::Handle<v8::Value> callFunctionEvenIfScriptDisabled( |
126 v8::Handle<v8::Function>, | 127 v8::Handle<v8::Function>, |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 UserMediaClientImpl m_userMediaClientImpl; | 356 UserMediaClientImpl m_userMediaClientImpl; |
356 | 357 |
357 OwnPtrWillBePersistent<GeolocationClientProxy> m_geolocationClientProxy; | 358 OwnPtrWillBePersistent<GeolocationClientProxy> m_geolocationClientProxy; |
358 }; | 359 }; |
359 | 360 |
360 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 361 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
361 | 362 |
362 } // namespace blink | 363 } // namespace blink |
363 | 364 |
364 #endif | 365 #endif |
OLD | NEW |