1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
ash / quick_insert / quick_insert_web_paste_target.h [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_QUICK_INSERT_QUICK_INSERT_WEB_PASTE_TARGET_H_
#define ASH_QUICK_INSERT_QUICK_INSERT_WEB_PASTE_TARGET_H_
#include "ash/ash_export.h"
#include "base/functional/callback.h"
#include "url/gurl.h"
namespace ash {
// Wrapper around a `content::WebContents` for pasting directly, as well as
// containing information about the `content::WebContents` used for determining
// what contents to paste.
struct ASH_EXPORT QuickInsertWebPasteTarget {
explicit QuickInsertWebPasteTarget(GURL url, base::OnceClosure do_paste);
QuickInsertWebPasteTarget(const QuickInsertWebPasteTarget&) = delete;
QuickInsertWebPasteTarget& operator=(const QuickInsertWebPasteTarget&) =
delete;
QuickInsertWebPasteTarget(QuickInsertWebPasteTarget&&);
QuickInsertWebPasteTarget& operator=(QuickInsertWebPasteTarget&&);
~QuickInsertWebPasteTarget();
// The last committed URL of the `content::WebContents`.
GURL url;
// Call this to paste the current clipboard contents into the
// `content::WebContents` associated with this struct.
base::OnceClosure do_paste;
};
} // namespace ash
#endif // ASH_QUICK_INSERT_QUICK_INSERT_WEB_PASTE_TARGET_H_