-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix stack_trace_unittest for cobalt. (#2249)
b/316403754
- Loading branch information
1 parent
05807a1
commit f6e1743
Showing
5 changed files
with
102 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright 2024 The Cobalt Authors | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
|
||
#include "base/process/launch.h" | ||
|
||
#include "base/notreached.h" | ||
|
||
namespace base { | ||
|
||
void RaiseProcessToHighPriority() { | ||
// Impossible on iOS. Do nothing. | ||
} | ||
|
||
bool GetAppOutput(const CommandLine& cl, std::string* output) { | ||
NOTIMPLEMENTED(); | ||
return false; | ||
} | ||
|
||
bool GetAppOutputAndError(const CommandLine& cl, std::string* output) { | ||
NOTIMPLEMENTED(); | ||
return false; | ||
} | ||
|
||
Process LaunchProcess(const CommandLine& cmdline, | ||
const LaunchOptions& options) { | ||
NOTIMPLEMENTED(); | ||
return Process(); | ||
} | ||
|
||
} // namespace base |