| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 maybeRenderFallbackContent(const WebURLError&) const override; | 262 bool maybeRenderFallbackContent(const WebURLError&) const override; |
| 263 bool isLoading() const override; | 263 bool isLoading() const override; |
| 264 bool isNavigationScheduledWithin(double interval) const override; | 264 bool isNavigationScheduledWithin(double interval) const override; |
| 265 void setCommittedFirstRealLoad() override; | 265 void setCommittedFirstRealLoad() override; |
| 266 void setHasReceivedUserGesture() override; | 266 void setHasReceivedUserGesture() override; |
| 267 void blinkFeatureUsageReport(const std::set<int>& features) override; |
| 268 void mixedContentFound(const WebURL& mainResourceUrl, |
| 269 const WebURL& mixedContentUrl, |
| 270 WebURLRequest::RequestContext, |
| 271 bool wasAllowed, |
| 272 bool hadRedirect) override; |
| 267 void sendOrientationChangeEvent() override; | 273 void sendOrientationChangeEvent() override; |
| 268 WebSandboxFlags effectiveSandboxFlags() const override; | 274 WebSandboxFlags effectiveSandboxFlags() const override; |
| 269 void forceSandboxFlags(WebSandboxFlags) override; | 275 void forceSandboxFlags(WebSandboxFlags) override; |
| 270 void didCallAddSearchProvider() override; | 276 void didCallAddSearchProvider() override; |
| 271 void didCallIsSearchProviderInstalled() override; | 277 void didCallIsSearchProviderInstalled() override; |
| 272 void replaceSelection(const WebString&) override; | 278 void replaceSelection(const WebString&) override; |
| 273 void requestFind(int identifier, | 279 void requestFind(int identifier, |
| 274 const WebString& searchText, | 280 const WebString& searchText, |
| 275 const WebFindOptions&) override; | 281 const WebFindOptions&) override; |
| 276 bool find(int identifier, | 282 bool find(int identifier, |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 | 501 |
| 496 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 502 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 497 WebFrame, | 503 WebFrame, |
| 498 frame, | 504 frame, |
| 499 frame->isWebLocalFrame(), | 505 frame->isWebLocalFrame(), |
| 500 frame.isWebLocalFrame()); | 506 frame.isWebLocalFrame()); |
| 501 | 507 |
| 502 } // namespace blink | 508 } // namespace blink |
| 503 | 509 |
| 504 #endif | 510 #endif |
| OLD | NEW |