LeviLamina
Loading...
Searching...
No Matches
TelemetryExtension.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/webview/Extension.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Json { class Value; }
11namespace Webview { struct TelemetryCommonProperties; }
12// clang-format on
13
14namespace Webview {
15
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 TelemetryExtension& operator=(TelemetryExtension const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual void setupMessageSender(::std::function<void(::std::string, ::std::string, ::std::string)>) /*override*/;
36
37 // vIndex: 2
38 virtual bool shouldProcessMessage(::std::string const&, ::std::string const&) /*override*/;
39
40 // vIndex: 3
41 virtual bool
42 onMessageReceived(::std::string const&, ::std::string const&, ::std::optional<::Json::Value>) /*override*/;
43
44 // vIndex: 6
45 virtual void onLoadingBegin(::std::function<void(::std::string)>) /*override*/;
46
47 // vIndex: 0
48 virtual ~TelemetryExtension() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60
61 // NOLINTEND
62};
63
64} // namespace Webview
Definition TelemetryExtension.h:16
Definition Extension.h:12
Definition Alias.h:14