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-29 23:29:54 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-29 23:29:54 +0000
commitd0f837d64102812529ed5c90c2d761791e90b522 (patch)
tree98d22dabdeabecece86f5343be9b5395ee5c4377 /chrome/test/ui/ui_test.cc
parent41834613fa4ae627781f9912d6e4c2be1e5ec012 (diff)
downloadchromium_src-d0f837d64102812529ed5c90c2d761791e90b522.zip
chromium_src-d0f837d64102812529ed5c90c2d761791e90b522.tar.gz
chromium_src-d0f837d64102812529ed5c90c2d761791e90b522.tar.bz2
Revert r206949 - "Start moving breakpad integration to a component."
I'll use a different approach to move breakpad to a component. > Step 1: move the DIR_CRASH_DUMPS symbol to the component > > BUG=247431 > > Review URL: https://chromiumcodereview.appspot.com/16924012 TBR=thestig@chromium.org Review URL: https://chromiumcodereview.appspot.com/18277002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209356 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, 1 insertions, 2 deletions
diff --git a/chrome/test/ui/ui_test.cc b/chrome/test/ui/ui_test.cc
index 57c9164..8154581 100644
--- a/chrome/test/ui/ui_test.cc
+++ b/chrome/test/ui/ui_test.cc
@@ -51,7 +51,6 @@
#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"
@@ -425,7 +424,7 @@ bool UITestBase::CloseBrowser(BrowserProxy* browser,
int UITestBase::GetCrashCount() const {
base::FilePath crash_dump_path;
- PathService::Get(breakpad::DIR_CRASH_DUMPS, &crash_dump_path);
+ PathService::Get(chrome::DIR_CRASH_DUMPS, &crash_dump_path);
int files_found = 0;
base::FileEnumerator en(crash_dump_path, false, base::FileEnumerator::FILES);