blob: 80f975bcdd269afe3d4fec70656ea8b056a5fe9a [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/browser/overscroll_configuration.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#include "content/public/common/content_switches.h"
namespace {
const float kHorizThresholdComplete = 0.25f;
const float kVertThresholdComplete = 0.20f;
const float kHorizThresholdStartTouchscreen = 50.f;
const float kHorizThresholdStartTouchpad = 50.f;
const float kVertThresholdStart = 50.f;
float GetHorizontalStartThresholdMultiplier() {
base::CommandLine* cmd = base::CommandLine::ForCurrentProcess();
if (!cmd->HasSwitch(switches::kOverscrollStartThreshold))
return 1.f;
std::string string_value =
cmd->GetSwitchValueASCII(switches::kOverscrollStartThreshold);
int percentage;
if (base::StringToInt(string_value, &percentage) && percentage > 0) {
return percentage / 100.f;
}
DLOG(WARNING) << "Failed to parse switch "
<< switches::kOverscrollStartThreshold << ": " << string_value;
return 1.f;
}
} // namespace
namespace content {
float GetOverscrollConfig(OverscrollConfig config) {
switch (config) {
case OVERSCROLL_CONFIG_HORIZ_THRESHOLD_COMPLETE:
return kHorizThresholdComplete;
case OVERSCROLL_CONFIG_VERT_THRESHOLD_COMPLETE:
return kVertThresholdComplete;
case OVERSCROLL_CONFIG_HORIZ_THRESHOLD_START_TOUCHSCREEN:
static const float horiz_threshold_start_touchscreen =
GetHorizontalStartThresholdMultiplier() *
kHorizThresholdStartTouchscreen;
return horiz_threshold_start_touchscreen;
case OVERSCROLL_CONFIG_HORIZ_THRESHOLD_START_TOUCHPAD:
static const float horiz_threshold_start_touchpad =
GetHorizontalStartThresholdMultiplier() *
kHorizThresholdStartTouchpad;
return horiz_threshold_start_touchpad;
case OVERSCROLL_CONFIG_VERT_THRESHOLD_START:
return kVertThresholdStart;
case OVERSCROLL_CONFIG_NONE:
NOTREACHED();
}
return -1.f;
}
} // namespace content