| 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 isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() |
| 263 const override; |
| 262 bool isNavigationScheduledWithin(double interval) const override; | 264 bool isNavigationScheduledWithin(double interval) const override; |
| 263 void setCommittedFirstRealLoad() override; | 265 void setCommittedFirstRealLoad() override; |
| 264 void sendOrientationChangeEvent() override; | 266 void sendOrientationChangeEvent() override; |
| 265 void willShowInstallBannerPrompt(int requestId, | 267 void willShowInstallBannerPrompt(int requestId, |
| 266 const WebVector<WebString>& platforms, | 268 const WebVector<WebString>& platforms, |
| 267 WebAppBannerPromptReply*) override; | 269 WebAppBannerPromptReply*) override; |
| 268 WebSandboxFlags effectiveSandboxFlags() const override; | 270 WebSandboxFlags effectiveSandboxFlags() const override; |
| 269 void forceSandboxFlags(WebSandboxFlags) override; | 271 void forceSandboxFlags(WebSandboxFlags) override; |
| 270 void requestRunTask(WebSuspendableTask*) const override; | 272 void requestRunTask(WebSuspendableTask*) const override; |
| 271 void didCallAddSearchProvider() override; | 273 void didCallAddSearchProvider() override; |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 | 472 |
| 471 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 473 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 472 WebFrame, | 474 WebFrame, |
| 473 frame, | 475 frame, |
| 474 frame->isWebLocalFrame(), | 476 frame->isWebLocalFrame(), |
| 475 frame.isWebLocalFrame()); | 477 frame.isWebLocalFrame()); |
| 476 | 478 |
| 477 } // namespace blink | 479 } // namespace blink |
| 478 | 480 |
| 479 #endif | 481 #endif |
| OLD | NEW |