Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.h

Issue 2393513004: Convert app banners to use Mojo. (Closed)
Patch Set: Address comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
259 WebFrameLoadType, 259 WebFrameLoadType,
260 const WebHistoryItem&, 260 const WebHistoryItem&,
261 WebHistoryLoadType, 261 WebHistoryLoadType,
262 bool isClientRedirect) override; 262 bool isClientRedirect) override;
263 bool isLoading() const override; 263 bool isLoading() const override;
264 bool isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873() 264 bool isFrameDetachedForSpecialOneOffStopTheCrashingHackBug561873()
265 const override; 265 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 sendOrientationChangeEvent() override; 268 void sendOrientationChangeEvent() override;
269 void willShowInstallBannerPrompt(int requestId,
270 const WebVector<WebString>& platforms,
271 WebAppBannerPromptReply*) override;
272 WebSandboxFlags effectiveSandboxFlags() const override; 269 WebSandboxFlags effectiveSandboxFlags() const override;
273 void forceSandboxFlags(WebSandboxFlags) override; 270 void forceSandboxFlags(WebSandboxFlags) override;
274 void requestRunTask(WebSuspendableTask*) const override; 271 void requestRunTask(WebSuspendableTask*) const override;
275 void didCallAddSearchProvider() override; 272 void didCallAddSearchProvider() override;
276 void didCallIsSearchProviderInstalled() override; 273 void didCallIsSearchProviderInstalled() override;
277 void replaceSelection(const WebString&) override; 274 void replaceSelection(const WebString&) override;
278 void requestFind(int identifier, 275 void requestFind(int identifier,
279 const WebString& searchText, 276 const WebString& searchText,
280 const WebFindOptions&) override; 277 const WebFindOptions&) override;
281 bool find(int identifier, 278 bool find(int identifier,
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 471
475 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 472 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
476 WebFrame, 473 WebFrame,
477 frame, 474 frame,
478 frame->isWebLocalFrame(), 475 frame->isWebLocalFrame(),
479 frame.isWebLocalFrame()); 476 frame.isWebLocalFrame());
480 477
481 } // namespace blink 478 } // namespace blink
482 479
483 #endif 480 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698