OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/common/layer_tree_settings_factory.h" |
| 6 |
| 7 #include "base/strings/string_number_conversions.h" |
| 8 #include "cc/base/switches.h" |
| 9 |
| 10 namespace content { |
| 11 |
| 12 // static |
| 13 void LayerTreeSettingsFactory::SetTopControlsSettings( |
| 14 cc::LayerTreeSettings& settings, |
| 15 const base::CommandLine& cmd) { |
| 16 if (cmd.HasSwitch(cc::switches::kTopControlsShowThreshold)) { |
| 17 std::string top_threshold_str = |
| 18 cmd.GetSwitchValueASCII(cc::switches::kTopControlsShowThreshold); |
| 19 double show_threshold; |
| 20 if (base::StringToDouble(top_threshold_str, &show_threshold) && |
| 21 show_threshold >= 0.f && show_threshold <= 1.f) |
| 22 settings.top_controls_show_threshold = show_threshold; |
| 23 } |
| 24 |
| 25 if (cmd.HasSwitch(cc::switches::kTopControlsHideThreshold)) { |
| 26 std::string top_threshold_str = |
| 27 cmd.GetSwitchValueASCII(cc::switches::kTopControlsHideThreshold); |
| 28 double hide_threshold; |
| 29 if (base::StringToDouble(top_threshold_str, &hide_threshold) && |
| 30 hide_threshold >= 0.f && hide_threshold <= 1.f) |
| 31 settings.top_controls_hide_threshold = hide_threshold; |
| 32 } |
| 33 } |
| 34 |
| 35 } // namespace content |
OLD | NEW |