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

Side by Side Diff: remoting/host/constants.h

Issue 10873050: [Chromoting] Hook up host talkgadget policy checks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move callback Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/host/constants.cc » ('j') | remoting/host/dns_blackhole_checker.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef REMOTING_HOST_CONSTANTS_H_ 5 #ifndef REMOTING_HOST_CONSTANTS_H_
6 #define REMOTING_HOST_CONSTANTS_H_ 6 #define REMOTING_HOST_CONSTANTS_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 9
10 namespace remoting { 10 namespace remoting {
11 11
12 // This is the default prefix that is prepended to ".talkgadget.google.com" 12 // This is the default prefix that is prepended to the kTalkGadgetUrl to form
13 // to form the complete talkgadget domain name. Policy settings allow admins 13 // the complete talkgadget URL used by the host. Policy settings allow admins
14 // to change the prefix that is used. 14 // to change the prefix that is used.
15 extern const char kDefaultTalkGadgetPrefix[]; 15 extern const char kDefaultHostTalkGadgetPrefix[];
Sergey Ulanov 2012/08/30 18:05:01 can we move it to dns_blackhole_checker.h? Then y
garykac 2012/08/31 18:28:23 Done. This is used by policy_watcher and dns_black
16 16
17 // Known host exit codes. 17 // Known host exit codes.
18 // Please keep this enum in sync with: 18 // Please keep this enum in sync with:
19 // remoting/host/installer/mac/PrivilegedHelperTools/ 19 // remoting/host/installer/mac/PrivilegedHelperTools/
20 // org.chromium.chromoting.me2me.sh 20 // org.chromium.chromoting.me2me.sh
21 // and remoting/tools/me2me_virtual_host.py. 21 // and remoting/tools/me2me_virtual_host.py.
22 enum HostExitCodes { 22 enum HostExitCodes {
23 // Error codes that don't indicate a permanent error condition. 23 // Error codes that don't indicate a permanent error condition.
24 kSuccessExitCode = 0, 24 kSuccessExitCode = 0,
25 kReservedForX11ExitCode = 1, 25 kReservedForX11ExitCode = 1,
(...skipping 12 matching lines...) Expand all
38 }; 38 };
39 39
40 #if defined(OS_WIN) 40 #if defined(OS_WIN)
41 // The Omaha Appid of the host. 41 // The Omaha Appid of the host.
42 extern const wchar_t kHostOmahaAppid[]; 42 extern const wchar_t kHostOmahaAppid[];
43 #endif // defined(OS_WIN) 43 #endif // defined(OS_WIN)
44 44
45 } // namespace remoting 45 } // namespace remoting
46 46
47 #endif // REMOTING_HOST_CONSTANTS_H_ 47 #endif // REMOTING_HOST_CONSTANTS_H_
OLDNEW
« no previous file with comments | « no previous file | remoting/host/constants.cc » ('j') | remoting/host/dns_blackhole_checker.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698