| Index: ash/display/display_layout_store.cc
|
| diff --git a/ash/display/display_layout_store.cc b/ash/display/display_layout_store.cc
|
| index 2533c4d95a5eabcc958d72b690876159302925e8..2d76122294f19dd637407dfeceb6db74877a13de 100644
|
| --- a/ash/display/display_layout_store.cc
|
| +++ b/ash/display/display_layout_store.cc
|
| @@ -19,8 +19,8 @@ DisplayLayoutStore::DisplayLayoutStore()
|
| : default_display_placement_(display::DisplayPlacement::RIGHT, 0) {
|
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| if (command_line->HasSwitch(switches::kAshSecondaryDisplayLayout)) {
|
| - std::string value = command_line->GetSwitchValueASCII(
|
| - switches::kAshSecondaryDisplayLayout);
|
| + std::string value =
|
| + command_line->GetSwitchValueASCII(switches::kAshSecondaryDisplayLayout);
|
| char layout;
|
| int offset = 0;
|
| if (sscanf(value.c_str(), "%c,%d", &layout, &offset) == 2) {
|
| @@ -37,8 +37,7 @@ DisplayLayoutStore::DisplayLayoutStore()
|
| }
|
| }
|
|
|
| -DisplayLayoutStore::~DisplayLayoutStore() {
|
| -}
|
| +DisplayLayoutStore::~DisplayLayoutStore() {}
|
|
|
| void DisplayLayoutStore::SetDefaultDisplayPlacement(
|
| const display::DisplayPlacement& placement) {
|
|
|