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