Change include paths to reflect new directory.

TEST=Tested with new ebuild.

Review URL: http://codereview.chromium.org/2819009
diff --git a/crash_reporter/crash_reporter.cc b/crash_reporter/crash_reporter.cc
index e283322..87d4fac 100644
--- a/crash_reporter/crash_reporter.cc
+++ b/crash_reporter/crash_reporter.cc
@@ -7,8 +7,8 @@
 #include "base/file_util.h"
 #include "base/logging.h"
 #include "base/string_util.h"
-#include "crash/system_logging.h"
-#include "crash/user_collector.h"
+#include "crash-reporter/system_logging.h"
+#include "crash-reporter/user_collector.h"
 #include "gflags/gflags.h"
 #include "metrics/metrics_library.h"
 
diff --git a/crash_reporter/system_logging.cc b/crash_reporter/system_logging.cc
index e366ef2..5789514 100644
--- a/crash_reporter/system_logging.cc
+++ b/crash_reporter/system_logging.cc
@@ -5,7 +5,7 @@
 #include <stdarg.h>
 #include <syslog.h>
 
-#include "crash/system_logging.h"
+#include "crash-reporter/system_logging.h"
 
 std::string SystemLoggingImpl::identity_;
 
diff --git a/crash_reporter/system_logging_mock.h b/crash_reporter/system_logging_mock.h
index 983c724..191e531 100644
--- a/crash_reporter/system_logging_mock.h
+++ b/crash_reporter/system_logging_mock.h
@@ -7,7 +7,7 @@
 
 #include <string>
 
-#include "crash/system_logging.h"
+#include "crash-reporter/system_logging.h"
 
 class SystemLoggingMock : public SystemLogging {
  public:
diff --git a/crash_reporter/user_collector.cc b/crash_reporter/user_collector.cc
index 7033ada..918f691 100644
--- a/crash_reporter/user_collector.cc
+++ b/crash_reporter/user_collector.cc
@@ -7,7 +7,7 @@
 #include "base/file_util.h"
 #include "base/logging.h"
 #include "base/string_util.h"
-#include "crash/user_collector.h"
+#include "crash-reporter/user_collector.h"
 #include "metrics/metrics_library.h"
 
 // This procfs file is used to cause kernel core file writing to
diff --git a/crash_reporter/user_collector.h b/crash_reporter/user_collector.h
index 7f63224..0d5dd01 100644
--- a/crash_reporter/user_collector.h
+++ b/crash_reporter/user_collector.h
@@ -7,7 +7,7 @@
 
 #include <string>
 
-#include "crash/system_logging.h"
+#include "crash-reporter/system_logging.h"
 
 class FilePath;
 
diff --git a/crash_reporter/user_collector_test.cc b/crash_reporter/user_collector_test.cc
index 6398ce7..71cce62 100644
--- a/crash_reporter/user_collector_test.cc
+++ b/crash_reporter/user_collector_test.cc
@@ -6,8 +6,8 @@
 #include <gtest/gtest.h>
 
 #include "base/file_util.h"
-#include "crash/system_logging_mock.h"
-#include "crash/user_collector.h"
+#include "crash-reporter/system_logging_mock.h"
+#include "crash-reporter/user_collector.h"
 
 int s_crashes = 0;
 bool s_metrics = false;