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 5 #ifndef FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_COMMAND_LINE_H_ 6 #define FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_COMMAND_LINE_H_ 7 8 #include "flutter/fml/command_line.h" 9 #include "flutter/fml/macros.h" 10 11 namespace flutter { 12 13 fml::CommandLine CommandLineFromNSProcessInfo(); 14 15 } // namespace flutter 16 17 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_COMMON_COMMAND_LINE_H_ 18