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

Unified Diff: cloud_print/service/win/cloud_print_service.h

Issue 10222011: Adding Windows service template for Cloud Print connector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « cloud_print/OWNERS ('k') | cloud_print/service/win/cloud_print_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cloud_print/service/win/cloud_print_service.h
===================================================================
--- cloud_print/service/win/cloud_print_service.h (revision 0)
+++ cloud_print/service/win/cloud_print_service.h (revision 0)
@@ -0,0 +1,27 @@
+// Copyright (c) 2012 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 CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_
+#define CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_
+#pragma once
+
+#ifndef STRICT
+#define STRICT
+#endif
+
+#define _ATL_FREE_THREADED
+
+#define _ATL_NO_AUTOMATIC_NAMESPACE
+
+// some CString constructors will be explicit
+#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
+
+#define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW
+
+#include <atlbase.h>
+#include <atlcom.h>
+#include <atlctl.h>
+
+#endif // CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_
+
« no previous file with comments | « cloud_print/OWNERS ('k') | cloud_print/service/win/cloud_print_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698