summaryrefslogtreecommitdiffstats
path: root/chrome/test/ui/ui_test.cc
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-18 12:21:19 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-18 12:21:19 +0000
commit7dc8d8057697b9101c7bd2b76195cc857ea00f2c (patch)
treeb0155babaf7914a5f8a602e49bb0d2630e92af5c /chrome/test/ui/ui_test.cc
parent5846985ab171d013e43f1f2770a679358a18b122 (diff)
downloadchromium_src-7dc8d8057697b9101c7bd2b76195cc857ea00f2c.zip
chromium_src-7dc8d8057697b9101c7bd2b76195cc857ea00f2c.tar.gz
chromium_src-7dc8d8057697b9101c7bd2b76195cc857ea00f2c.tar.bz2
Start moving breakpad integration to a component.
Step 1: move the DIR_CRASH_DUMPS symbol to the component BUG=247431 Review URL: https://chromiumcodereview.appspot.com/16924012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.cc')
-rw-r--r--chrome/test/ui/ui_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
index 86b6970..b723883 100644
--- a/chrome/test/ui/ui_test.cc
+++ b/chrome/test/ui/ui_test.cc
@@ -51,6 +51,7 @@
#include "chrome/test/base/test_launcher_utils.h"
#include "chrome/test/base/test_switches.h"
#include "chrome/test/base/testing_profile.h"
+#include "components/breakpad/common/breakpad_paths.h"
#include "googleurl/src/gurl.h"
#include "net/base/net_util.h"
#include "ui/gl/gl_implementation.h"
@@ -424,7 +425,7 @@ bool UITestBase::CloseBrowser(BrowserProxy* browser,
int UITestBase::GetCrashCount() const {
base::FilePath crash_dump_path;
- PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dump_path);
+ PathService::Get(breakpad::DIR_CRASH_DUMPS, &crash_dump_path);
int files_found = 0;
base::FileEnumerator en(crash_dump_path, false, base::FileEnumerator::FILES);