mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This patch prepares us to switch sending semantics information over mojom to using dart:ui directly. Currently the recorded information is dropped on the floor, but that will improve in future patches.
16 lines
369 B
C++
16 lines
369 B
C++
// 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.
|
|
|
|
#include "flutter/lib/ui/semantics/semantics_node.h"
|
|
|
|
#include <string.h>
|
|
|
|
namespace blink {
|
|
|
|
SemanticsNode::SemanticsNode() = default;
|
|
|
|
SemanticsNode::~SemanticsNode() = default;
|
|
|
|
} // namespace blink
|