diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-25 03:44:40 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-25 03:44:40 +0000 |
commit | 0dfc81bbe403cd98f4cd2d58e7817cdc8a881a5f (patch) | |
tree | e78c0118849d836de89315d25ad3980a10fea171 /net | |
parent | 42be0ca594ed7980c7ee73ef04919cd890463e9a (diff) | |
download | chromium_src-0dfc81bbe403cd98f4cd2d58e7817cdc8a881a5f.zip chromium_src-0dfc81bbe403cd98f4cd2d58e7817cdc8a881a5f.tar.gz chromium_src-0dfc81bbe403cd98f4cd2d58e7817cdc8a881a5f.tar.bz2 |
Move NOTIMPLEMENTED() macro from "base/notimplemented.h" into "base/logging.h".
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1300 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/disk_cache/cache_util_posix.cc | 1 | ||||
-rw-r--r-- | net/disk_cache/file_posix.cc | 2 | ||||
-rw-r--r-- | net/disk_cache/os_file_posix.cc | 2 | ||||
-rw-r--r-- | net/disk_cache/trace.cc | 1 | ||||
-rw-r--r-- | net/http/http_network_layer.cc | 2 | ||||
-rw-r--r-- | net/proxy/proxy_service.cc | 2 |
6 files changed, 4 insertions, 6 deletions
diff --git a/net/disk_cache/cache_util_posix.cc b/net/disk_cache/cache_util_posix.cc index fa1a324..7e7bc63 100644 --- a/net/disk_cache/cache_util_posix.cc +++ b/net/disk_cache/cache_util_posix.cc @@ -6,7 +6,6 @@ #include "base/file_util.h" #include "base/logging.h" -#include "base/notimplemented.h" namespace disk_cache { diff --git a/net/disk_cache/file_posix.cc b/net/disk_cache/file_posix.cc index 4059418..bd2e779 100644 --- a/net/disk_cache/file_posix.cc +++ b/net/disk_cache/file_posix.cc @@ -4,7 +4,7 @@ #include "net/disk_cache/file.h" -#include "base/notimplemented.h" +#include "base/logging.h" #include "net/disk_cache/disk_cache.h" namespace disk_cache { diff --git a/net/disk_cache/os_file_posix.cc b/net/disk_cache/os_file_posix.cc index 6574423..7b8fe0d 100644 --- a/net/disk_cache/os_file_posix.cc +++ b/net/disk_cache/os_file_posix.cc @@ -4,7 +4,7 @@ #include "net/disk_cache/os_file.h" -#include "base/notimplemented.h" +#include "base/logging.h" namespace disk_cache { diff --git a/net/disk_cache/trace.cc b/net/disk_cache/trace.cc index a5fd7dc..c656cef 100644 --- a/net/disk_cache/trace.cc +++ b/net/disk_cache/trace.cc @@ -9,7 +9,6 @@ #endif #include "base/logging.h" -#include "base/notimplemented.h" // Change this value to 1 to enable tracing on a release build. By default, // tracing is enabled only on debug builds. diff --git a/net/http/http_network_layer.cc b/net/http/http_network_layer.cc index 7f3594e..9b2c468 100644 --- a/net/http/http_network_layer.cc +++ b/net/http/http_network_layer.cc @@ -4,7 +4,7 @@ #include "net/http/http_network_layer.h" -#include "base/notimplemented.h" +#include "base/logging.h" #include "net/base/client_socket_factory.h" #include "net/http/http_network_session.h" #include "net/http/http_network_transaction.h" diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc index fb26247..1d48090 100644 --- a/net/proxy/proxy_service.cc +++ b/net/proxy/proxy_service.cc @@ -11,8 +11,8 @@ #include <algorithm> +#include "base/logging.h" #include "base/message_loop.h" -#include "base/notimplemented.h" #include "base/string_tokenizer.h" #include "base/string_util.h" #include "googleurl/src/gurl.h" |