| 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 void loadData(const WebData&, | 252 void loadData(const WebData&, |
| 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 void mixedContentUpdateFromBrowser(const std::set<int>& features, |
| 263 bool mixedContentWasFound, |
| 264 const WebURL& mixedContentUrl, |
| 265 bool mixedContentHadRedirect) override; |
| 262 bool maybeRenderFallbackContent(const WebURLError&) const override; | 266 bool maybeRenderFallbackContent(const WebURLError&) const override; |
| 263 bool isLoading() const override; | 267 bool isLoading() const override; |
| 264 bool isNavigationScheduledWithin(double interval) const override; | 268 bool isNavigationScheduledWithin(double interval) const override; |
| 265 void setCommittedFirstRealLoad() override; | 269 void setCommittedFirstRealLoad() override; |
| 266 void setHasReceivedUserGesture() override; | 270 void setHasReceivedUserGesture() override; |
| 267 void sendOrientationChangeEvent() override; | 271 void sendOrientationChangeEvent() override; |
| 268 WebSandboxFlags effectiveSandboxFlags() const override; | 272 WebSandboxFlags effectiveSandboxFlags() const override; |
| 269 void forceSandboxFlags(WebSandboxFlags) override; | 273 void forceSandboxFlags(WebSandboxFlags) override; |
| 270 void didCallAddSearchProvider() override; | 274 void didCallAddSearchProvider() override; |
| 271 void didCallIsSearchProviderInstalled() override; | 275 void didCallIsSearchProviderInstalled() override; |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 | 481 |
| 478 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 482 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 479 WebFrame, | 483 WebFrame, |
| 480 frame, | 484 frame, |
| 481 frame->isWebLocalFrame(), | 485 frame->isWebLocalFrame(), |
| 482 frame.isWebLocalFrame()); | 486 frame.isWebLocalFrame()); |
| 483 | 487 |
| 484 } // namespace blink | 488 } // namespace blink |
| 485 | 489 |
| 486 #endif | 490 #endif |
| OLD | NEW |