Commit 9da90eb2 authored by khorimoto's avatar khorimoto Committed by Commit bot

Remove //components/proximity_auth/remote_device.h. It was supposed to have...

Remove //components/proximity_auth/remote_device.h. It was supposed to have been removed in https://codereview.chromium.org/2560713002.

BUG=672263

TBR=tengs@chromium.org

Review-Url: https://codereview.chromium.org/2586983003
Cr-Commit-Position: refs/heads/master@{#439515}
parent 5a88699d
......@@ -24,8 +24,8 @@
#include "chrome/browser/signin/easy_unlock_metrics.h"
#include "chromeos/login/auth/user_context.h"
#include "chromeos/tpm/tpm_token_loader.h"
#include "components/cryptauth/remote_device.h"
#include "components/proximity_auth/logging/logging.h"
#include "components/proximity_auth/remote_device.h"
#include "components/proximity_auth/switches.h"
namespace {
......
include_rules = [
"+components/gcm_driver",
"+components/prefs",
"+components/proximity_auth",
"+components/proximity_auth/logging",
"+crypto",
"+google_apis",
"+net",
......
......@@ -12,7 +12,7 @@
#include "base/test/simple_test_clock.h"
#include "base/time/time.h"
#include "components/cryptauth/proto/cryptauth_api.pb.h"
#include "components/proximity_auth/remote_device.h"
#include "components/cryptauth/remote_device.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
......
// Copyright 2014 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 COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
#define COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
#include <string>
#include <vector>
namespace cryptauth {
struct RemoteDevice {
public:
enum BluetoothType { BLUETOOTH_CLASSIC, BLUETOOTH_LE };
std::string user_id;
std::string name;
std::string public_key;
BluetoothType bluetooth_type;
std::string bluetooth_address;
std::string persistent_symmetric_key;
std::string sign_in_challenge;
RemoteDevice();
RemoteDevice(const std::string& user_id,
const std::string& name,
const std::string& public_key,
BluetoothType bluetooth_type,
const std::string& bluetooth_address,
const std::string& persistent_symmetric_key,
std::string sign_in_challenge);
RemoteDevice(const RemoteDevice& other);
~RemoteDevice();
};
typedef std::vector<RemoteDevice> RemoteDeviceList;
} // namespace cryptauth
#endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment