| Index: chrome/browser/devtools/devtools_ui_bindings.cc
|
| diff --git a/chrome/browser/devtools/devtools_ui_bindings.cc b/chrome/browser/devtools/devtools_ui_bindings.cc
|
| index 3f751d300730cf1ce7985726b725c00905255aee..9e134e3b0de17e0b2726523bc008f38e532510bf 100644
|
| --- a/chrome/browser/devtools/devtools_ui_bindings.cc
|
| +++ b/chrome/browser/devtools/devtools_ui_bindings.cc
|
| @@ -773,7 +773,7 @@ void DevToolsUIBindings::SendMessageToBrowser(const std::string& message) {
|
| void DevToolsUIBindings::RecordEnumeratedHistogram(const std::string& name,
|
| int sample,
|
| int boundary_value) {
|
| - if (!(boundary_value >= 0 && boundary_value < 100 && sample >= 0 &&
|
| + if (!(boundary_value >= 0 && boundary_value <= 100 && sample >= 0 &&
|
| sample < boundary_value)) {
|
| frontend_host_->BadMessageRecieved();
|
| return;
|
|
|