| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 252                 const WebString& mimeType, | 252                 const WebString& mimeType, | 
| 253                 const WebString& textEncoding, | 253                 const WebString& textEncoding, | 
| 254                 const WebURL& baseURL, | 254                 const WebURL& baseURL, | 
| 255                 const WebURL& unreachableURL, | 255                 const WebURL& unreachableURL, | 
| 256                 bool replace, | 256                 bool replace, | 
| 257                 WebFrameLoadType, | 257                 WebFrameLoadType, | 
| 258                 const WebHistoryItem&, | 258                 const WebHistoryItem&, | 
| 259                 WebHistoryLoadType, | 259                 WebHistoryLoadType, | 
| 260                 bool isClientRedirect) override; | 260                 bool isClientRedirect) override; | 
| 261   bool isLoading() const override; | 261   bool isLoading() const override; | 
|  | 262   bool isDetached() const override; | 
| 262   bool isNavigationScheduledWithin(double interval) const override; | 263   bool isNavigationScheduledWithin(double interval) const override; | 
| 263   void setCommittedFirstRealLoad() override; | 264   void setCommittedFirstRealLoad() override; | 
| 264   void sendOrientationChangeEvent() override; | 265   void sendOrientationChangeEvent() override; | 
| 265   void willShowInstallBannerPrompt(int requestId, | 266   void willShowInstallBannerPrompt(int requestId, | 
| 266                                    const WebVector<WebString>& platforms, | 267                                    const WebVector<WebString>& platforms, | 
| 267                                    WebAppBannerPromptReply*) override; | 268                                    WebAppBannerPromptReply*) override; | 
| 268   WebSandboxFlags effectiveSandboxFlags() const override; | 269   WebSandboxFlags effectiveSandboxFlags() const override; | 
| 269   void forceSandboxFlags(WebSandboxFlags) override; | 270   void forceSandboxFlags(WebSandboxFlags) override; | 
| 270   void requestRunTask(WebSuspendableTask*) const override; | 271   void requestRunTask(WebSuspendableTask*) const override; | 
| 271   void didCallAddSearchProvider() override; | 272   void didCallAddSearchProvider() override; | 
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 470 | 471 | 
| 471 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 472 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 
| 472                   WebFrame, | 473                   WebFrame, | 
| 473                   frame, | 474                   frame, | 
| 474                   frame->isWebLocalFrame(), | 475                   frame->isWebLocalFrame(), | 
| 475                   frame.isWebLocalFrame()); | 476                   frame.isWebLocalFrame()); | 
| 476 | 477 | 
| 477 }  // namespace blink | 478 }  // namespace blink | 
| 478 | 479 | 
| 479 #endif | 480 #endif | 
| OLD | NEW | 
|---|