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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 bool replace, | 260 bool replace, |
261 WebFrameLoadType, | 261 WebFrameLoadType, |
262 const WebHistoryItem&, | 262 const WebHistoryItem&, |
263 WebHistoryLoadType, | 263 WebHistoryLoadType, |
264 bool isClientRedirect) override; | 264 bool isClientRedirect) override; |
265 bool maybeRenderFallbackContent(const WebURLError&) const override; | 265 bool maybeRenderFallbackContent(const WebURLError&) const override; |
266 bool isLoading() const override; | 266 bool isLoading() const override; |
267 bool isNavigationScheduledWithin(double interval) const override; | 267 bool isNavigationScheduledWithin(double interval) const override; |
268 void setCommittedFirstRealLoad() override; | 268 void setCommittedFirstRealLoad() override; |
269 void setHasReceivedUserGesture() override; | 269 void setHasReceivedUserGesture() override; |
| 270 void blinkFeatureUsageReport(const std::set<int>& features) override; |
| 271 void mixedContentFoundByTheBrowser(const WebURL& mainResourceUrl, |
| 272 const WebURL& mixedContentUrl, |
| 273 WebURLRequest::RequestContext, |
| 274 bool wasAllowed, |
| 275 bool hadRedirect) override; |
270 void sendOrientationChangeEvent() override; | 276 void sendOrientationChangeEvent() override; |
271 WebSandboxFlags effectiveSandboxFlags() const override; | 277 WebSandboxFlags effectiveSandboxFlags() const override; |
272 void forceSandboxFlags(WebSandboxFlags) override; | 278 void forceSandboxFlags(WebSandboxFlags) override; |
273 void didCallAddSearchProvider() override; | 279 void didCallAddSearchProvider() override; |
274 void didCallIsSearchProviderInstalled() override; | 280 void didCallIsSearchProviderInstalled() override; |
275 void replaceSelection(const WebString&) override; | 281 void replaceSelection(const WebString&) override; |
276 void requestFind(int identifier, | 282 void requestFind(int identifier, |
277 const WebString& searchText, | 283 const WebString& searchText, |
278 const WebFindOptions&) override; | 284 const WebFindOptions&) override; |
279 bool find(int identifier, | 285 bool find(int identifier, |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 | 486 |
481 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 487 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
482 WebFrame, | 488 WebFrame, |
483 frame, | 489 frame, |
484 frame->isWebLocalFrame(), | 490 frame->isWebLocalFrame(), |
485 frame.isWebLocalFrame()); | 491 frame.isWebLocalFrame()); |
486 | 492 |
487 } // namespace blink | 493 } // namespace blink |
488 | 494 |
489 #endif | 495 #endif |
OLD | NEW |