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

Side by Side Diff: cloud_print/virtual_driver/win/virtual_driver_consts.cc

Issue 6930019: Added resources. (Closed)
Patch Set: Dealing with git stupidity Created 9 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cloud_print/virtual_driver/win/virtual_driver_consts.h" 5 #include "cloud_print/virtual_driver/win/virtual_driver_consts.h"
6 #include <windows.h> 6 #include <windows.h>
7 #include "cloud_print/virtual_driver/win/virtual_driver_helpers.h" 7 #include "cloud_print/virtual_driver/win/virtual_driver_helpers.h"
8 8
9 namespace cloud_print { 9 namespace cloud_print {
10 const wchar_t kPortMonitorDllName64[] = L"gcp_portmon64.dll";
11 const wchar_t kPortMonitorDllName32[] = L"gcp_portmon.dll";
12 const wchar_t kPortName[] = L"GCP:"; 10 const wchar_t kPortName[] = L"GCP:";
13 const size_t kPortNameSize = sizeof(kPortName); 11 const size_t kPortNameSize = sizeof(kPortName);
14
15 // The driver name is user visible so it SHOULD be localized, BUT
16 // the name is used as a key to find both the driver and printer.
17 // We'll need to be careful. If the name changes for the
18 // driver it could create bugs.
19 const wchar_t kVirtualDriverName[] = L"Google Cloud Print Virtual Printer";
20 } 12 }
21 13
OLDNEW
« no previous file with comments | « cloud_print/virtual_driver/win/virtual_driver_consts.h ('k') | cloud_print/virtual_driver/win/virtual_driver_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698