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