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

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

Issue 2379923002: Implement "appinstalled" event on Android. (Closed)
Patch Set: Minor refactor. 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 const WebHistoryItem&, 258 const WebHistoryItem&,
259 WebHistoryLoadType, 259 WebHistoryLoadType,
260 bool isClientRedirect) override; 260 bool isClientRedirect) override;
261 bool isLoading() const override; 261 bool isLoading() const override;
262 bool isNavigationScheduledWithin(double interval) const override; 262 bool isNavigationScheduledWithin(double interval) const override;
263 void setCommittedFirstRealLoad() override; 263 void setCommittedFirstRealLoad() override;
264 void sendOrientationChangeEvent() override; 264 void sendOrientationChangeEvent() override;
265 void willShowInstallBannerPrompt(int requestId, 265 void willShowInstallBannerPrompt(int requestId,
266 const WebVector<WebString>& platforms, 266 const WebVector<WebString>& platforms,
267 WebAppBannerPromptReply*) override; 267 WebAppBannerPromptReply*) override;
268 void onAppInstalled() override;
268 WebSandboxFlags effectiveSandboxFlags() const override; 269 WebSandboxFlags effectiveSandboxFlags() const override;
269 void forceSandboxFlags(WebSandboxFlags) override; 270 void forceSandboxFlags(WebSandboxFlags) override;
270 void requestRunTask(WebSuspendableTask*) const override; 271 void requestRunTask(WebSuspendableTask*) const override;
271 void didCallAddSearchProvider() override; 272 void didCallAddSearchProvider() override;
272 void didCallIsSearchProviderInstalled() override; 273 void didCallIsSearchProviderInstalled() override;
273 void replaceSelection(const WebString&) override; 274 void replaceSelection(const WebString&) override;
274 void requestFind(int identifier, 275 void requestFind(int identifier,
275 const WebString& searchText, 276 const WebString& searchText,
276 const WebFindOptions&) override; 277 const WebFindOptions&) override;
277 bool find(int identifier, 278 bool find(int identifier,
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 471
471 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 472 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
472 WebFrame, 473 WebFrame,
473 frame, 474 frame,
474 frame->isWebLocalFrame(), 475 frame->isWebLocalFrame(),
475 frame.isWebLocalFrame()); 476 frame.isWebLocalFrame());
476 477
477 } // namespace blink 478 } // namespace blink
478 479
479 #endif 480 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698