Move logging.h into base/logging.h.
Change-Id: Id68f85f7c3a71b156cb40dec63f94d4fb827f279
diff --git a/src/base/unix_file/fd_file.cc b/src/base/unix_file/fd_file.cc
index 73130a3..7bb28a1 100644
--- a/src/base/unix_file/fd_file.cc
+++ b/src/base/unix_file/fd_file.cc
@@ -14,12 +14,12 @@
* limitations under the License.
*/
+#include "base/logging.h"
#include "base/unix_file/fd_file.h"
#include <errno.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
-#include "logging.h"
namespace unix_file {
diff --git a/src/base/unix_file/mapped_file.cc b/src/base/unix_file/mapped_file.cc
index 84629b3..b63fdd3 100644
--- a/src/base/unix_file/mapped_file.cc
+++ b/src/base/unix_file/mapped_file.cc
@@ -14,6 +14,7 @@
* limitations under the License.
*/
+#include "base/logging.h"
#include "base/unix_file/mapped_file.h"
#include <fcntl.h>
#include <sys/mman.h>
@@ -22,7 +23,6 @@
#include <unistd.h>
#include <algorithm>
#include <string>
-#include "logging.h"
namespace unix_file {
diff --git a/src/base/unix_file/mapped_file_test.cc b/src/base/unix_file/mapped_file_test.cc
index f61ed3b..a3b097d 100644
--- a/src/base/unix_file/mapped_file_test.cc
+++ b/src/base/unix_file/mapped_file_test.cc
@@ -15,12 +15,12 @@
*/
#include "base/unix_file/mapped_file.h"
+#include "base/logging.h"
#include "base/unix_file/fd_file.h"
#include "base/unix_file/random_access_file_test.h"
#include "base/unix_file/random_access_file_utils.h"
#include "base/unix_file/string_file.h"
#include "gtest/gtest.h"
-#include "logging.h"
namespace unix_file {
diff --git a/src/base/unix_file/string_file.cc b/src/base/unix_file/string_file.cc
index 5d47b17..ff0d0fa 100644
--- a/src/base/unix_file/string_file.cc
+++ b/src/base/unix_file/string_file.cc
@@ -17,7 +17,7 @@
#include "base/unix_file/string_file.h"
#include <errno.h>
#include <algorithm>
-#include "logging.h"
+#include "base/logging.h"
namespace unix_file {