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