1// Copyright (c) 2012 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 "chrome/browser/ui/tabs/tab_strip_layout_type_prefs.h"
6
7#include "base/prefs/pref_registry_simple.h"
8#include "chrome/browser/ui/tabs/tab_strip_layout_type.h"
9#include "chrome/common/pref_names.h"
10
11namespace chrome {
12
13void RegisterTabStripLayoutTypePrefs(PrefRegistrySimple* registry) {
14  // This value is device dependant, so it goes in local state.
15  registry->RegisterIntegerPref(prefs::kTabStripLayoutType,
16                                static_cast<int>(TAB_STRIP_LAYOUT_SHRINK));
17}
18
19}  // namespace chrome
20