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

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

Issue 2393513004: Convert app banners to use Mojo. (Closed)
Patch Set: Remove WebAppBannerPromptResult 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 const WebURL& unreachableURL, 250 const WebURL& unreachableURL,
251 bool replace, 251 bool replace,
252 WebFrameLoadType, 252 WebFrameLoadType,
253 const WebHistoryItem&, 253 const WebHistoryItem&,
254 WebHistoryLoadType, 254 WebHistoryLoadType,
255 bool isClientRedirect) override; 255 bool isClientRedirect) override;
256 bool isLoading() const override; 256 bool isLoading() const override;
257 bool isNavigationScheduledWithin(double interval) const override; 257 bool isNavigationScheduledWithin(double interval) const override;
258 void setCommittedFirstRealLoad() override; 258 void setCommittedFirstRealLoad() override;
259 void sendOrientationChangeEvent() override; 259 void sendOrientationChangeEvent() override;
260 void willShowInstallBannerPrompt(int requestId, 260 void willShowInstallBannerPrompt(mojo::ScopedMessagePipeHandle serviceHandle,
261 mojo::ScopedMessagePipeHandle eventHandle,
261 const WebVector<WebString>& platforms, 262 const WebVector<WebString>& platforms,
262 WebAppBannerPromptReply*) override; 263 mojom::AppBannerPromptReply*) override;
263 WebSandboxFlags effectiveSandboxFlags() const override; 264 WebSandboxFlags effectiveSandboxFlags() const override;
264 void forceSandboxFlags(WebSandboxFlags) override; 265 void forceSandboxFlags(WebSandboxFlags) override;
265 void requestRunTask(WebSuspendableTask*) const override; 266 void requestRunTask(WebSuspendableTask*) const override;
266 void didCallAddSearchProvider() override; 267 void didCallAddSearchProvider() override;
267 void didCallIsSearchProviderInstalled() override; 268 void didCallIsSearchProviderInstalled() override;
268 void replaceSelection(const WebString&) override; 269 void replaceSelection(const WebString&) override;
269 void requestFind(int identifier, 270 void requestFind(int identifier,
270 const WebString& searchText, 271 const WebString& searchText,
271 const WebFindOptions&) override; 272 const WebFindOptions&) override;
272 bool find(int identifier, 273 bool find(int identifier,
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 466
466 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 467 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
467 WebFrame, 468 WebFrame,
468 frame, 469 frame,
469 frame->isWebLocalFrame(), 470 frame->isWebLocalFrame(),
470 frame.isWebLocalFrame()); 471 frame.isWebLocalFrame());
471 472
472 } // namespace blink 473 } // namespace blink
473 474
474 #endif 475 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698