diff options
author | moshayedi <moshayedi@chromium.org> | 2015-11-18 16:59:01 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-19 00:59:55 +0000 |
commit | 78970cdf045848d0abee55557488423d3a10759b (patch) | |
tree | fdf9633dab5b49b3ca1cf47e30e04f597f991edd /chrome/browser/extensions/api/messaging | |
parent | 17151340a6a6491e249fb74b9e4903ffee2957de (diff) | |
download | chromium_src-78970cdf045848d0abee55557488423d3a10759b.zip chromium_src-78970cdf045848d0abee55557488423d3a10759b.tar.gz chromium_src-78970cdf045848d0abee55557488423d3a10759b.tar.bz2 |
Aura on Android: Stub Implementation of NativeProcessLauncher.
BUG=548797
Review URL: https://codereview.chromium.org/1434663004
Cr-Commit-Position: refs/heads/master@{#360457}
Diffstat (limited to 'chrome/browser/extensions/api/messaging')
-rw-r--r-- | chrome/browser/extensions/api/messaging/native_process_launcher_android.cc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/chrome/browser/extensions/api/messaging/native_process_launcher_android.cc b/chrome/browser/extensions/api/messaging/native_process_launcher_android.cc new file mode 100644 index 0000000..d6c1b17 --- /dev/null +++ b/chrome/browser/extensions/api/messaging/native_process_launcher_android.cc @@ -0,0 +1,26 @@ +// Copyright 2015 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 "chrome/browser/extensions/api/messaging/native_process_launcher.h" + +namespace extensions { + +// static +base::FilePath NativeProcessLauncher::FindManifest( + const std::string& host_name, + bool allow_user_level_hosts, + std::string* error_message) { + return base::FilePath(); +} + +// static +bool NativeProcessLauncher::LaunchNativeProcess( + const base::CommandLine& command_line, + base::Process* process, + base::File* read_file, + base::File* write_file) { + return false; +} + +} // namespace extensions |