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

Unified Diff: third_party/WebKit/Source/modules/ballista/Actions.h

Issue 1924753002: Revert of Added navigator.actions.share experimental web API (stub). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/ballista/Actions.h
diff --git a/third_party/WebKit/Source/modules/ballista/Actions.h b/third_party/WebKit/Source/modules/ballista/Actions.h
deleted file mode 100644
index 3f987d93b47b21435f85e55b059feea26e6ccf01..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/ballista/Actions.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef Actions_h
-#define Actions_h
-
-#include "bindings/core/v8/ScriptPromise.h"
-#include "bindings/core/v8/ScriptPromiseResolver.h"
-#include "bindings/core/v8/ScriptWrappable.h"
-#include "core/dom/ContextLifecycleObserver.h"
-#include "core/events/EventTarget.h"
-#include "platform/heap/Handle.h"
-#include "public/platform/modules/ballista/ballista.mojom-blink.h"
-#include "wtf/HashSet.h"
-
-namespace blink {
-
-class Dictionary;
-class Document;
-class ExecutionContext;
-class LocalFrame;
-class ScriptPromise;
-class ScriptState;
-
-class Actions final : public GarbageCollectedFinalized<Actions>, public ScriptWrappable {
- DEFINE_WRAPPERTYPEINFO();
-public:
- static Actions* create()
- {
- return new Actions();
- }
-
- ~Actions();
-
- // Actions interface
- ScriptPromise share(ScriptState*, const String&, const String&);
-
- DECLARE_TRACE();
-
-private:
- class BallistaClientImpl;
-
- Actions();
-
- blink::mojom::blink::BallistaServicePtr m_service;
-
- HeapHashSet<Member<BallistaClientImpl>> m_clients;
-};
-
-} // namespace blink
-
-#endif // Actions_h

Powered by Google App Engine
This is Rietveld 408576698