-
Notifications
You must be signed in to change notification settings - Fork 133
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.
b/316403754 Change-Id: I8da6ff532c4c78acb44dfcf7360c26a21887ad85
- Loading branch information
1 parent
94a6c93
commit b8693b6
Showing
6 changed files
with
110 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// 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" | ||
|
||
namespace base { | ||
|
||
void RaiseProcessToHighPriority() { | ||
// Impossible on iOS. Do nothing. | ||
} | ||
|
||
bool GetAppOutput(const CommandLine& cl, std::string* output) { | ||
return false; | ||
} | ||
|
||
bool GetAppOutputAndError(const CommandLine& cl, std::string* output) { | ||
return false; | ||
} | ||
|
||
Process LaunchProcess(const CommandLine& cmdline, | ||
const LaunchOptions& options) { | ||
return Process(); | ||
} | ||
|
||
} // namespace base |
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