constantina | c8b2173b | 2016-12-15 05:55:51 | [diff] [blame] | 1 | // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROME_BROWSER_WEBSHARE_SHARE_SERVICE_IMPL_H_ |
| 6 | #define CHROME_BROWSER_WEBSHARE_SHARE_SERVICE_IMPL_H_ |
| 7 | |
| 8 | #include <string> |
| 9 | |
| 10 | #include "mojo/public/cpp/bindings/interface_request.h" |
| 11 | #include "third_party/WebKit/public/platform/modules/webshare/webshare.mojom.h" |
| 12 | |
| 13 | class GURL; |
| 14 | |
| 15 | // Desktop implementation of the ShareService Mojo service. |
| 16 | class ShareServiceImpl : public blink::mojom::ShareService { |
| 17 | public: |
| 18 | ShareServiceImpl() = default; |
| 19 | ~ShareServiceImpl() override = default; |
| 20 | |
| 21 | static void Create(mojo::InterfaceRequest<ShareService> request); |
| 22 | |
| 23 | void Share(const std::string& title, |
| 24 | const std::string& text, |
| 25 | const GURL& url, |
| 26 | const ShareCallback& callback) override; |
| 27 | |
| 28 | private: |
| 29 | DISALLOW_COPY_AND_ASSIGN(ShareServiceImpl); |
| 30 | }; |
| 31 | |
| 32 | #endif // CHROME_BROWSER_WEBSHARE_SHARE_SERVICE_IMPL_H_ |