diff options
author | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-22 00:36:46 +0000 |
---|---|---|
committer | eroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-22 00:36:46 +0000 |
commit | 92056b95525a92217684e0b3df68cf371d77fd55 (patch) | |
tree | 0d50a952b902b3afda45064078e7b7316facba80 /net/base/net_log.h | |
parent | 950e1eb9ffe522a8acec921203182f5765461a2f (diff) | |
download | chromium_src-92056b95525a92217684e0b3df68cf371d77fd55.zip chromium_src-92056b95525a92217684e0b3df68cf371d77fd55.tar.gz chromium_src-92056b95525a92217684e0b3df68cf371d77fd55.tar.bz2 |
Address a TODO about not duplicating the name --> value mapping for NetLog::Source.
Review URL: http://codereview.chromium.org/2131024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47977 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/net_log.h')
-rw-r--r-- | net/base/net_log.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/net/base/net_log.h b/net/base/net_log.h index 02f0a4b..619b57b 100644 --- a/net/base/net_log.h +++ b/net/base/net_log.h @@ -53,13 +53,9 @@ class NetLog { // The "source" identifies the entity that generated the log message. enum SourceType { - SOURCE_NONE, - SOURCE_URL_REQUEST, - SOURCE_SOCKET_STREAM, - SOURCE_INIT_PROXY_RESOLVER, - SOURCE_CONNECT_JOB, - SOURCE_SOCKET, - SOURCE_SPDY_SESSION, +#define SOURCE_TYPE(label) SOURCE_ ## label, +#include "net/base/net_log_source_type_list.h" +#undef SOURCE_TYPE }; // Identifies the entity that generated this log. The |id| field should |