1 // Copyright 2013 The Flutter 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 // 2021.2.10 Framework adapted to ACE. 5 // Copyright (c) 2021 Huawei Device Co., Ltd. All rights reserved. 6 7 #include "flutter/shell/common/run_configuration.h" 8 9 #include <sstream> 10 11 #include "flutter/fml/file.h" 12 #include "flutter/fml/unique_fd.h" 13 14 namespace flutter { 15 16 RunConfiguration::RunConfiguration(RunConfiguration&&) = default; 17 18 RunConfiguration::~RunConfiguration() = default; 19 IsValid() const20bool RunConfiguration::IsValid() const { 21 return true; 22 } 23 24 } // namespace flutter 25