diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-18 12:21:19 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-18 12:21:19 +0000 |
commit | 7dc8d8057697b9101c7bd2b76195cc857ea00f2c (patch) | |
tree | b0155babaf7914a5f8a602e49bb0d2630e92af5c /chrome_frame | |
parent | 5846985ab171d013e43f1f2770a679358a18b122 (diff) | |
download | chromium_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_frame')
-rw-r--r-- | chrome_frame/test/reliability/page_load_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome_frame/test/reliability/page_load_test.cc b/chrome_frame/test/reliability/page_load_test.cc index 82af2ad..7b7d628 100644 --- a/chrome_frame/test/reliability/page_load_test.cc +++ b/chrome_frame/test/reliability/page_load_test.cc @@ -56,6 +56,7 @@ #include "chrome_frame/test/ie_event_sink.h" #include "chrome_frame/test/reliability/page_load_test.h" #include "chrome_frame/utils.h" +#include "components/breakpad/common/breakpad_paths.h" #include "content/public/browser/browser_thread.h" #include "content/public/test/test_browser_thread.h" #include "net/base/net_util.h" @@ -332,7 +333,7 @@ class PageLoadTest : public testing::Test { protected: virtual void SetUp() { // Initialize crash_dumps_dir_path_. - PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dumps_dir_path_); + PathService::Get(breakpad::DIR_CRASH_DUMPS, &crash_dumps_dir_path_); base::FileEnumerator enumerator(crash_dumps_dir_path_, false, // not recursive base::FileEnumerator::FILES); |