Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 8c25dda

Browse files
Formatting
1 parent 6b8ba2f commit 8c25dda

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

shell/platform/windows/accessibility_alert.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ IFACEMETHODIMP AccessibilityAlert::get_accDefaultAction(VARIANT var_id,
157157

158158
// End of IAccessible methods.
159159

160-
161160
//
162161
// IServiceProvider implementation.
163162
//

shell/platform/windows/accessibility_alert.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ class AccessibilityRootNode;
2121
// the root AccessibilityRootNode node, and is therefore also a sibling
2222
// of the window's root node.
2323
// This node is not interactable to the user.
24-
class __declspec(uuid("778c1bd8-383f-4d49-b6be-8937e12b6a32")) AccessibilityAlert : public CComObjectRootEx<CComMultiThreadModel>,
25-
public IDispatchImpl<IAccessible>,
26-
public IServiceProvider {
24+
class __declspec(uuid("778c1bd8-383f-4d49-b6be-8937e12b6a32"))
25+
AccessibilityAlert : public CComObjectRootEx<CComMultiThreadModel>,
26+
public IDispatchImpl<IAccessible>,
27+
public IServiceProvider {
2728
public:
2829
BEGIN_COM_MAP(AccessibilityAlert)
2930
COM_INTERFACE_ENTRY(AccessibilityAlert)

shell/platform/windows/accessibility_root_node.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ IFACEMETHODIMP AccessibilityRootNode::put_accName(VARIANT var_id,
259259
//
260260

261261
IFACEMETHODIMP AccessibilityRootNode::QueryService(REFGUID guidService,
262-
REFIID riid,
263-
void** object) {
262+
REFIID riid,
263+
void** object) {
264264
if (!object) {
265265
return E_INVALIDARG;
266266
}

shell/platform/windows/accessibility_root_node.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
namespace flutter {
1717

1818
// A parent node that wraps the window IAccessible node.
19-
class __declspec(uuid("fedb8280-ea4f-47a9-98fe-5d1a557fe4b3")) AccessibilityRootNode : public CComObjectRootEx<CComMultiThreadModel>,
20-
public IDispatchImpl<IAccessible>,
21-
public IServiceProvider {
19+
class __declspec(uuid("fedb8280-ea4f-47a9-98fe-5d1a557fe4b3"))
20+
AccessibilityRootNode : public CComObjectRootEx<CComMultiThreadModel>,
21+
public IDispatchImpl<IAccessible>,
22+
public IServiceProvider {
2223
public:
2324
static constexpr LONG kAlertChildId = 2;
2425

@@ -108,8 +109,8 @@ class __declspec(uuid("fedb8280-ea4f-47a9-98fe-5d1a557fe4b3")) AccessibilityRoot
108109
//
109110

110111
IFACEMETHODIMP QueryService(REFGUID guidService,
111-
REFIID riid,
112-
void** object) override;
112+
REFIID riid,
113+
void** object) override;
113114

114115
AccessibilityRootNode();
115116
virtual ~AccessibilityRootNode();

0 commit comments

Comments
 (0)