OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:rotation_value
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
display_options_handler.cc
387
std::string
rotation_value
;
389
if (!args->GetString(1, &
rotation_value
)) {
393
if (
rotation_value
== "90")
395
else if (
rotation_value
== "180")
397
else if (
rotation_value
== "270")
399
else if (
rotation_value
!= "0")
400
LOG(ERROR) << "Invalid rotation: " <<
rotation_value
<< " Falls back to 0";
/external/chromium_org/chrome/browser/chromeos/display/
display_preferences.cc
127
int
rotation_value
= 0;
local
128
if (dict_value->GetInteger("rotation", &
rotation_value
)) {
129
rotation = static_cast<gfx::Display::Rotation>(
rotation_value
);
Completed in 72 milliseconds