| Index: ios/chrome/browser/physical_web/physical_web_initial_state_recorder.h
|
| diff --git a/ios/chrome/browser/physical_web/physical_web_initial_state_recorder.h b/ios/chrome/browser/physical_web/physical_web_initial_state_recorder.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..89624479c7e86d723246ee6a00e6160a378dd80e
|
| --- /dev/null
|
| +++ b/ios/chrome/browser/physical_web/physical_web_initial_state_recorder.h
|
| @@ -0,0 +1,25 @@
|
| +// Copyright 2016 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.
|
| +
|
| +#ifndef IOS_CHROME_BROWSER_PHYSICAL_WEB_PHYSICAL_WEB_INITIAL_STATE_RECORDER_H_
|
| +#define IOS_CHROME_BROWSER_PHYSICAL_WEB_PHYSICAL_WEB_INITIAL_STATE_RECORDER_H_
|
| +
|
| +#import <CoreBluetooth/CoreBluetooth.h>
|
| +
|
| +class PrefService;
|
| +
|
| +@interface PhysicalWebInitialStateRecorder : NSObject<CBCentralManagerDelegate>
|
| +
|
| +- (instancetype)initWithPrefService:(PrefService*)prefService
|
| + NS_DESIGNATED_INITIALIZER;
|
| +
|
| +- (instancetype)init NS_UNAVAILABLE;
|
| +
|
| +// Fetches and logs the current state of settings relevant to the Physical Web
|
| +// feature.
|
| +- (void)collectAndRecordState;
|
| +
|
| +@end
|
| +
|
| +#endif // IOS_CHROME_BROWSER_PHYSICAL_WEB_PHYSICAL_WEB_INITIAL_STATE_RECORDER_H_
|
|
|