| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 // WebLocalFrame methods: | 241 // WebLocalFrame methods: |
| 242 WebLocalFrameImpl* CreateLocalChild(WebTreeScopeType, | 242 WebLocalFrameImpl* CreateLocalChild(WebTreeScopeType, |
| 243 WebFrameClient*, | 243 WebFrameClient*, |
| 244 blink::InterfaceProvider*, | 244 blink::InterfaceProvider*, |
| 245 blink::InterfaceRegistry*) override; | 245 blink::InterfaceRegistry*) override; |
| 246 void SetAutofillClient(WebAutofillClient*) override; | 246 void SetAutofillClient(WebAutofillClient*) override; |
| 247 WebAutofillClient* AutofillClient() override; | 247 WebAutofillClient* AutofillClient() override; |
| 248 void SetDevToolsAgentClient(WebDevToolsAgentClient*) override; | 248 void SetDevToolsAgentClient(WebDevToolsAgentClient*) override; |
| 249 WebDevToolsAgent* DevToolsAgent() override; | 249 WebDevToolsAgent* DevToolsAgent() override; |
| 250 WebLocalFrameImpl* LocalRoot() override; | 250 WebLocalFrameImpl* LocalRoot() override; |
| 251 WebFrame* FindFrameByName(const WebString& name) override; |
| 251 void SendPings(const WebURL& destination_url) override; | 252 void SendPings(const WebURL& destination_url) override; |
| 252 bool DispatchBeforeUnloadEvent(bool) override; | 253 bool DispatchBeforeUnloadEvent(bool) override; |
| 253 WebURLRequest RequestFromHistoryItem(const WebHistoryItem&, | 254 WebURLRequest RequestFromHistoryItem(const WebHistoryItem&, |
| 254 WebCachePolicy) const override; | 255 WebCachePolicy) const override; |
| 255 WebURLRequest RequestForReload(WebFrameLoadType, | 256 WebURLRequest RequestForReload(WebFrameLoadType, |
| 256 const WebURL&) const override; | 257 const WebURL&) const override; |
| 257 void Load(const WebURLRequest&, | 258 void Load(const WebURLRequest&, |
| 258 WebFrameLoadType, | 259 WebFrameLoadType, |
| 259 const WebHistoryItem&, | 260 const WebHistoryItem&, |
| 260 WebHistoryLoadType, | 261 WebHistoryLoadType, |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 | 522 |
| 522 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 523 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 523 WebFrame, | 524 WebFrame, |
| 524 frame, | 525 frame, |
| 525 frame->IsWebLocalFrame(), | 526 frame->IsWebLocalFrame(), |
| 526 frame.IsWebLocalFrame()); | 527 frame.IsWebLocalFrame()); |
| 527 | 528 |
| 528 } // namespace blink | 529 } // namespace blink |
| 529 | 530 |
| 530 #endif | 531 #endif |
| OLD | NEW |