root/chrome/browser/ui/cocoa/extensions/browser_actions_controller_prefs.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. RegisterBrowserActionsControllerProfilePrefs

// 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 "chrome/browser/ui/cocoa/extensions/browser_actions_controller_prefs.h"

#include "components/user_prefs/pref_registry_syncable.h"
#include "extensions/browser/pref_names.h"

void RegisterBrowserActionsControllerProfilePrefs(
    user_prefs::PrefRegistrySyncable* registry) {
  registry->RegisterDoublePref(
      extensions::pref_names::kBrowserActionContainerWidth,
      0,
      user_prefs::PrefRegistrySyncable::UNSYNCABLE_PREF);
}

/* [<][>][^][v][top][bottom][index][help] */