Index: chrome/browser/chromeos/printing/printer_configuration.cc |
diff --git a/chrome/browser/chromeos/printing/printer_configuration.cc b/chrome/browser/chromeos/printing/printer_configuration.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d1a335bc7b7f05f6a3f1addb47197e7cce3112f2 |
--- /dev/null |
+++ b/chrome/browser/chromeos/printing/printer_configuration.cc |
@@ -0,0 +1,17 @@ |
+// 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. |
+ |
+#include "chrome/browser/chromeos/printing/printer_configuration.h" |
stevenjb
2016/07/29 16:56:50
Do we anticipate this having any src/chrome or src
skau
2016/08/01 19:37:19
Nope. This should be plain old data. It's moved.
|
+ |
+#include <string> |
+ |
+namespace chromeos { |
+ |
+Printer::Printer() {} |
+ |
+Printer::Printer(const std::string& id) : id_(id) {} |
+ |
+Printer::~Printer() {} |
+ |
+} // namespace chromeos |