diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 18:35:53 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-02-11 18:35:53 +0000 |
commit | 3ae54ce53ddf4801fb78cfb768445ca3dcdd44a8 (patch) | |
tree | d9606a40e45be91866bf0271772fc8d7337a1a96 /mojo/environment | |
parent | 81ad15fec4fdfa4e4efc5bf42a157748b115fcdd (diff) | |
download | chromium_src-3ae54ce53ddf4801fb78cfb768445ca3dcdd44a8.zip chromium_src-3ae54ce53ddf4801fb78cfb768445ca3dcdd44a8.tar.gz chromium_src-3ae54ce53ddf4801fb78cfb768445ca3dcdd44a8.tar.bz2 |
Revert 250439 "Mojo: Add a public/environment/test_support.h."
This isn't quite right. It breaks (on a Linux shared library build)
mojo_shell_unittests at runtime. The stuff in test_support.h also
differs considerably from other stuff in environment/ (it's not
something chosen by the app), so it doesn't belong there. Hmmm.
> Mojo: Add a public/environment/test_support.h.
>
> Remove public/tests's base dependency.
>
> R=darin@chromium.org
>
> Review URL: https://codereview.chromium.org/145073008
TBR=viettrungluu@chromium.org,darin@chromium.org
Review URL: https://codereview.chromium.org/150203008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250454 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/environment')
-rw-r--r-- | mojo/environment/test_support.cc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/mojo/environment/test_support.cc b/mojo/environment/test_support.cc deleted file mode 100644 index dcded8b..0000000 --- a/mojo/environment/test_support.cc +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2014 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "mojo/public/environment/test_support.h" - -#include "base/test/perf_log.h" - -namespace mojo { -namespace test { - -void LogPerfResult(const char* test_name, double value, const char* units) { - return base::LogPerfResult(test_name, value, units); -} - -} // namespace test -} // namespace mojo |