diff options
author | hashimoto <hashimoto@chromium.org> | 2014-08-25 04:08:20 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-25 11:09:18 +0000 |
commit | 2d1cf16698ef2680ea50014b015fecf6db32e730 (patch) | |
tree | 9633bde6c0540058db6c59fa184e85c92c77ef33 /apps/prefs.cc | |
parent | c921afdcc249a89bd9e8cc1cc898e4c320cc5d03 (diff) | |
download | chromium_src-2d1cf16698ef2680ea50014b015fecf6db32e730.zip chromium_src-2d1cf16698ef2680ea50014b015fecf6db32e730.tar.gz chromium_src-2d1cf16698ef2680ea50014b015fecf6db32e730.tar.bz2 |
Merge apps/pref* to extensions/browser/pref*
The pref's exclusive user AppWindow will move to extensions/browser
Merge apps/pref_names.{cc,h} to extensions/browser/pref_names.{cc,h}
Merge apps/prefs.{cc,h} to extensions/browser/extension_prefs.cc
BUG=403726
Committed: https://chromium.googlesource.com/chromium/src/+/3da4417c5baa6b8fe0be9aa012f0fd3294d9dbc7
Review URL: https://codereview.chromium.org/493003002
Cr-Commit-Position: refs/heads/master@{#291655}
Diffstat (limited to 'apps/prefs.cc')
-rw-r--r-- | apps/prefs.cc | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/apps/prefs.cc b/apps/prefs.cc deleted file mode 100644 index 0521a5c..0000000 --- a/apps/prefs.cc +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2013 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 "apps/prefs.h" - -#include "apps/pref_names.h" -#include "base/prefs/pref_registry_simple.h" -#include "components/pref_registry/pref_registry_syncable.h" - -namespace apps { - -void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) { -#if !defined(OS_MACOSX) - registry->RegisterBooleanPref( - prefs::kAppFullscreenAllowed, true, - user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF); -#endif -} - -} // namespace apps |