Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
|
sdefresne
2016/11/16 18:00:09
I think this can be changed to be a pure C++ file
mattreynolds
2016/11/16 18:41:57
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #import "ios/chrome/browser/physical_web/physical_web_local_state.h" | |
| 6 | |
| 7 #include "components/prefs/pref_registry_simple.h" | |
| 8 #include "ios/chrome/browser/physical_web/physical_web_constants.h" | |
| 9 #include "ios/chrome/browser/pref_names.h" | |
| 10 | |
| 11 namespace physical_web { | |
| 12 | |
| 13 void RegisterPrefs(PrefRegistrySimple* registry) { | |
| 14 registry->RegisterIntegerPref(prefs::kIosPhysicalWebEnabled, | |
| 15 physical_web::kPhysicalWebOnboarding); | |
| 16 } | |
| 17 | |
| 18 } // namespace physical_web | |
| OLD | NEW |