Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: syzygy/application/application_impl.h

Issue 1269553002: Create a utility for running executables in LAA mode. (Closed) Base URL: https://github.com/google/syzygy.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | syzygy/runlaa/runlaa.gyp » ('j') | syzygy/runlaa/runlaa_app.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 Google Inc. All Rights Reserved. 1 // Copyright 2012 Google Inc. All Rights Reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License. 4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 if (command_line_->HasSwitch("verbose")) { 79 if (command_line_->HasSwitch("verbose")) {
80 std::string value_str(command_line_->GetSwitchValueASCII("verbose")); 80 std::string value_str(command_line_->GetSwitchValueASCII("verbose"));
81 base::TrimWhitespace(value_str, base::TRIM_ALL, &value_str); 81 base::TrimWhitespace(value_str, base::TRIM_ALL, &value_str);
82 int value = 1; 82 int value = 1;
83 if (!base::StringToInt(value_str, &value)) 83 if (!base::StringToInt(value_str, &value))
84 value = 1; 84 value = 1;
85 logging::SetMinLogLevel(-::abs(value)); 85 logging::SetMinLogLevel(-::abs(value));
86 } 86 }
87 87
88 if (command_line_->HasSwitch("quiet"))
89 logging::SetMinLogLevel(logging::LOG_ERROR);
90
88 return true; 91 return true;
89 } 92 }
90 93
91 } // namespace application 94 } // namespace application
92 95
93 #endif // SYZYGY_APPLICATION_APPLICATION_IMPL_H_ 96 #endif // SYZYGY_APPLICATION_APPLICATION_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | syzygy/runlaa/runlaa.gyp » ('j') | syzygy/runlaa/runlaa_app.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698