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

Unified Diff: chrome/browser/printing/cloud_print/virtual_driver_install_helper.h

Issue 7485011: Virtual Cloud Print Driver for Mac. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Style fix. Created 9 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/printing/cloud_print/virtual_driver_install_helper.h
diff --git a/chrome/browser/printing/cloud_print/virtual_driver_install_helper.h b/chrome/browser/printing/cloud_print/virtual_driver_install_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..1e50915b2331da996b3cb016438ac3e819e43aa3
--- /dev/null
+++ b/chrome/browser/printing/cloud_print/virtual_driver_install_helper.h
@@ -0,0 +1,28 @@
+// Copyright (c) 2011 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_PRINTING_CLOUD_PRINT_VIRTUAL_DRIVER_INSTALL_HELPER_H_
+#define CHROME_BROWSER_PRINTING_CLOUD_PRINT_VIRTUAL_DRIVER_INSTALL_HELPER_H_
+#pragma once
+
+#include "base/basictypes.h"
+#include "base/memory/ref_counted.h"
+#include "base/observer_list.h"
+
+namespace cloud_print {
Nico 2011/08/01 17:13:39 add newline
abeera 2011/08/01 20:45:10 Done.
+class VirtualDriverInstallHelper :
Nico 2011/08/01 17:13:39 Needs comments, the public methods as well
abeera 2011/08/01 20:45:10 Done.
+ public base::RefCountedThreadSafe<VirtualDriverInstallHelper>
+{
Nico 2011/08/01 17:13:39 brace goes on previous line
abeera 2011/08/01 20:45:10 Done.
+ public:
+ static void SetUpInstall();
+ static void SetUpUninstall();
+
+ private:
+ void InstallVirtualDriverTask();
+ void UninstallVirtualDriverTask();
+
+ };
Nico 2011/08/01 17:13:39 indentation wrong. newline after this
abeera 2011/08/01 20:45:10 Done.
+}
+
Nico 2011/08/01 17:13:39 // namespace cloud_print
abeera 2011/08/01 20:45:10 Done.
+#endif // CHROME_BROWSER_PRINTING_CLOUD_PRINT_VIRTUAL_DRIVER_INSTALL_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698