| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 void loadData(const WebData&, | 256 void loadData(const WebData&, |
| 257 const WebString& mimeType, | 257 const WebString& mimeType, |
| 258 const WebString& textEncoding, | 258 const WebString& textEncoding, |
| 259 const WebURL& baseURL, | 259 const WebURL& baseURL, |
| 260 const WebURL& unreachableURL, | 260 const WebURL& unreachableURL, |
| 261 bool replace, | 261 bool replace, |
| 262 WebFrameLoadType, | 262 WebFrameLoadType, |
| 263 const WebHistoryItem&, | 263 const WebHistoryItem&, |
| 264 WebHistoryLoadType, | 264 WebHistoryLoadType, |
| 265 bool isClientRedirect) override; | 265 bool isClientRedirect) override; |
| 266 bool maybeRenderFallbackContent(const WebURLError&) const override; |
| 266 bool isLoading() const override; | 267 bool isLoading() const override; |
| 267 bool isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() | 268 bool isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() |
| 268 const override; | 269 const override; |
| 269 bool isNavigationScheduledWithin(double interval) const override; | 270 bool isNavigationScheduledWithin(double interval) const override; |
| 270 void setCommittedFirstRealLoad() override; | 271 void setCommittedFirstRealLoad() override; |
| 271 void setHasReceivedUserGesture() override; | 272 void setHasReceivedUserGesture() override; |
| 272 void sendOrientationChangeEvent() override; | 273 void sendOrientationChangeEvent() override; |
| 273 WebSandboxFlags effectiveSandboxFlags() const override; | 274 WebSandboxFlags effectiveSandboxFlags() const override; |
| 274 void forceSandboxFlags(WebSandboxFlags) override; | 275 void forceSandboxFlags(WebSandboxFlags) override; |
| 275 void requestRunTask(WebSuspendableTask*) const override; | 276 void requestRunTask(WebSuspendableTask*) const override; |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 | 476 |
| 476 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 477 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 477 WebFrame, | 478 WebFrame, |
| 478 frame, | 479 frame, |
| 479 frame->isWebLocalFrame(), | 480 frame->isWebLocalFrame(), |
| 480 frame.isWebLocalFrame()); | 481 frame.isWebLocalFrame()); |
| 481 | 482 |
| 482 } // namespace blink | 483 } // namespace blink |
| 483 | 484 |
| 484 #endif | 485 #endif |
| OLD | NEW |