Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: chrome/browser/chromeos/printing/printer_configuration.cc

Issue 2161933003: Define printer configuration objects for Chrome OS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready for review Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698