| Index: chrome/browser/printing/cloud_print/device_description.cc
|
| diff --git a/chrome/browser/local_discovery/device_description.cc b/chrome/browser/printing/cloud_print/device_description.cc
|
| similarity index 85%
|
| rename from chrome/browser/local_discovery/device_description.cc
|
| rename to chrome/browser/printing/cloud_print/device_description.cc
|
| index f3bd4974a293c21adc381d660f348b061c0509d1..6726aea780005576e4b326fb613ab61a3d85be92 100644
|
| --- a/chrome/browser/local_discovery/device_description.cc
|
| +++ b/chrome/browser/printing/cloud_print/device_description.cc
|
| @@ -2,16 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/browser/local_discovery/device_description.h"
|
| +#include "chrome/browser/printing/cloud_print/device_description.h"
|
|
|
| #include <vector>
|
|
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/string_util.h"
|
| -#include "chrome/browser/local_discovery/privet_constants.h"
|
| +#include "chrome/browser/printing/cloud_print/privet_constants.h"
|
| #include "chrome/common/local_discovery/service_discovery_client.h"
|
|
|
| -namespace local_discovery {
|
| +namespace cloud_print {
|
|
|
| namespace {
|
|
|
| @@ -33,7 +33,7 @@ DeviceDescription::DeviceDescription() : version(0) {
|
| }
|
|
|
| DeviceDescription::DeviceDescription(
|
| - const ServiceDescription& service_description) {
|
| + const local_discovery::ServiceDescription& service_description) {
|
| address = service_description.address;
|
|
|
| const std::vector<std::string>& metadata = service_description.metadata;
|
| @@ -55,4 +55,4 @@ DeviceDescription::DeviceDescription(
|
| DeviceDescription::~DeviceDescription() {
|
| }
|
|
|
| -} // namespace local_discovery
|
| +} // namespace cloud_print
|
|
|