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

Unified Diff: third_party/WebKit/Source/core/fetch/ResourceLoadingLog.h

Issue 2584423002: Loading: move core/fetch to platform/loader/fetch (Closed)
Patch Set: another try Created 3 years, 11 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
Index: third_party/WebKit/Source/core/fetch/ResourceLoadingLog.h
diff --git a/third_party/WebKit/Source/core/fetch/ResourceLoadingLog.h b/third_party/WebKit/Source/core/fetch/ResourceLoadingLog.h
deleted file mode 100644
index 796dd159572d561970803cead121796efd8d7678..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/fetch/ResourceLoadingLog.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright 2016 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 ResourceLoadingLog_h
-#define ResourceLoadingLog_h
-
-#include "wtf/Assertions.h"
-
-#if DCHECK_IS_ON()
-// We can see logs with |--v=N| or |--vmodule=ResourceLoadingLog=N| where N is a
-// verbose level.
-#define RESOURCE_LOADING_DVLOG(verbose_level) \
- LAZY_STREAM( \
- VLOG_STREAM(verbose_level), \
- ((verbose_level) <= ::logging::GetVlogLevel("ResourceLoadingLog.h")))
-#else
-#define RESOURCE_LOADING_DVLOG(verbose_level) EAT_STREAM_PARAMETERS
-#endif
-
-#endif // ResourceLoadingLog_h

Powered by Google App Engine
This is Rietveld 408576698