| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 // WebLocalFrame methods: | 231 // WebLocalFrame methods: |
| 232 virtual void initializeToReplaceRemoteFrame(WebRemoteFrame*, const WebString
& name, WebSandboxFlags) override; | 232 virtual void initializeToReplaceRemoteFrame(WebRemoteFrame*, const WebString
& name, WebSandboxFlags) override; |
| 233 virtual void setAutofillClient(WebAutofillClient*) override; | 233 virtual void setAutofillClient(WebAutofillClient*) override; |
| 234 virtual WebAutofillClient* autofillClient() override; | 234 virtual WebAutofillClient* autofillClient() override; |
| 235 virtual void setDevToolsAgentClient(WebDevToolsAgentClient*) override; | 235 virtual void setDevToolsAgentClient(WebDevToolsAgentClient*) override; |
| 236 virtual WebDevToolsAgent* devToolsAgent() override; | 236 virtual WebDevToolsAgent* devToolsAgent() override; |
| 237 virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL
) override; | 237 virtual void sendPings(const WebNode& linkNode, const WebURL& destinationURL
) override; |
| 238 virtual bool isLoading() const override; | 238 virtual bool isLoading() const override; |
| 239 virtual bool isResourceLoadInProgress() const override; | 239 virtual bool isResourceLoadInProgress() const override; |
| 240 virtual void setCommittedFirstRealLoad() override; | 240 virtual void setCommittedFirstRealLoad() override; |
| 241 virtual void addStyleSheetByURL(const WebString& url) override; | |
| 242 virtual void navigateToSandboxedMarkup(const WebData& markup) override; | |
| 243 virtual void sendOrientationChangeEvent() override; | 241 virtual void sendOrientationChangeEvent() override; |
| 244 virtual void willShowInstallBannerPrompt(int requestId, const WebVector<WebS
tring>& platforms, WebAppBannerPromptReply*) override; | 242 virtual void willShowInstallBannerPrompt(int requestId, const WebVector<WebS
tring>& platforms, WebAppBannerPromptReply*) override; |
| 245 virtual void willShowInstallBannerPrompt(const WebVector<WebString>& platfor
ms, WebAppBannerPromptReply*) override; | 243 virtual void willShowInstallBannerPrompt(const WebVector<WebString>& platfor
ms, WebAppBannerPromptReply*) override; |
| 246 void requestRunTask(WebSuspendableTask*) const override; | 244 void requestRunTask(WebSuspendableTask*) const override; |
| 247 | 245 |
| 248 void willBeDetached(); | 246 void willBeDetached(); |
| 249 void willDetachParent(); | 247 void willDetachParent(); |
| 250 | 248 |
| 251 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); | 249 static WebLocalFrameImpl* create(WebTreeScopeType, WebFrameClient*); |
| 252 virtual ~WebLocalFrameImpl(); | 250 virtual ~WebLocalFrameImpl(); |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 GC_PLUGIN_IGNORE("340522") | 392 GC_PLUGIN_IGNORE("340522") |
| 395 Persistent<WebLocalFrameImpl> m_selfKeepAlive; | 393 Persistent<WebLocalFrameImpl> m_selfKeepAlive; |
| 396 #endif | 394 #endif |
| 397 }; | 395 }; |
| 398 | 396 |
| 399 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); | 397 DEFINE_TYPE_CASTS(WebLocalFrameImpl, WebFrame, frame, frame->isWebLocalFrame(),
frame.isWebLocalFrame()); |
| 400 | 398 |
| 401 } // namespace blink | 399 } // namespace blink |
| 402 | 400 |
| 403 #endif | 401 #endif |
| OLD | NEW |