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

Unified Diff: third_party/WebKit/Source/modules/app_banner/AppBannerPromptResult.h

Issue 1483903002: [App Banner] Use appropriate type parameters for WebCallbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/app_banner/AppBannerPromptResult.h
diff --git a/third_party/WebKit/Source/modules/app_banner/AppBannerPromptResult.h b/third_party/WebKit/Source/modules/app_banner/AppBannerPromptResult.h
index 3ef287620e8e8efa53fb3f2824344e11a7f8a019..d1d475d47a4767843bc10e8a6583030fb5583928 100644
--- a/third_party/WebKit/Source/modules/app_banner/AppBannerPromptResult.h
+++ b/third_party/WebKit/Source/modules/app_banner/AppBannerPromptResult.h
@@ -19,8 +19,6 @@ class AppBannerPromptResult final : public GarbageCollectedFinalized<AppBannerPr
DEFINE_WRAPPERTYPEINFO();
WTF_MAKE_NONCOPYABLE(AppBannerPromptResult);
public:
- static AppBannerPromptResult* take(PassOwnPtr<WebAppBannerPromptResult> webInstance);
-
static AppBannerPromptResult* create(const AtomicString& platform, WebAppBannerPromptResult::Outcome outcome)
{
return new AppBannerPromptResult(platform, outcome);

Powered by Google App Engine
This is Rietveld 408576698