blob: 71d07af60f6936a64d7de64b2e4764404cfe4edb [file] [log] [blame]
// 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 CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_DEVICE_LIST_DELEGATE_H_
#define CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_DEVICE_LIST_DELEGATE_H_
#include <string>
#include <vector>
namespace local_discovery {
class CloudDeviceListDelegate {
public:
static const char kDeviceTypePrinter[];
struct Device {
Device();
~Device();
std::string id;
std::string type;
std::string display_name;
std::string description;
};
typedef std::vector<Device> DeviceList;
CloudDeviceListDelegate();
virtual ~CloudDeviceListDelegate();
virtual void OnDeviceListReady(const DeviceList& devices) = 0;
virtual void OnDeviceListUnavailable() = 0;
};
} // namespace local_discovery
#endif // CHROME_BROWSER_LOCAL_DISCOVERY_CLOUD_DEVICE_LIST_DELEGATE_H_