diff options
author | mal@chromium.org <mal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-14 02:39:09 +0000 |
---|---|---|
committer | mal@chromium.org <mal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-14 02:39:09 +0000 |
commit | df1c7700fea7346bf60fa48d494691bb58ecec41 (patch) | |
tree | 99c1c355c79b45b73ec05fcb8c43fb286d69ed8f /chrome | |
parent | e69d8f8ec81cf42a69a42b4beab5d1b79fa1c146 (diff) | |
download | chromium_src-df1c7700fea7346bf60fa48d494691bb58ecec41.zip chromium_src-df1c7700fea7346bf60fa48d494691bb58ecec41.tar.gz chromium_src-df1c7700fea7346bf60fa48d494691bb58ecec41.tar.bz2 |
Revert r3334 to disable magic_browzR and see if that fixes the crashes in the
reliability tests.
TBR= ben@chromium.org
Review URL: http://codereview.chromium.org/7135
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3340 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/browser_process_impl.h | 2 | ||||
-rw-r--r-- | chrome/test/accessibility/constants.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index 8e302c6..82f275f 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -177,7 +177,7 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe { virtual bool IsUsingNewFrames() { DCHECK(CalledOnValidThread()); if (!checked_for_new_frames_) { - using_new_frames_ = !CommandLine().HasSwitch(L"use-old-frames"); + using_new_frames_ = CommandLine().HasSwitch(L"magic_browzR"); checked_for_new_frames_ = true; } return using_new_frames_; diff --git a/chrome/test/accessibility/constants.h b/chrome/test/accessibility/constants.h index c331a24..8cb9ea4 100644 --- a/chrome/test/accessibility/constants.h +++ b/chrome/test/accessibility/constants.h @@ -8,8 +8,6 @@ #include <windows.h> #include <tchar.h> -#define NEW_FRAMES - /////////////////////////////////////////////////////////////////// // Constant Definitations specific to Chrome Accessibility Tests. /////////////////////////////////////////////////////////////////// |