diff options
author | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-26 07:23:00 +0000 |
---|---|---|
committer | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-26 07:23:00 +0000 |
commit | a596e11f92a756e946ee1c4c64e9d9c083d13a2a (patch) | |
tree | b0d2c1699b4202dd00afa0974c5b6e515933aece | |
parent | e39037d2b7adaa7c4518a49faa5ddc78ac895efa (diff) | |
download | chromium_src-a596e11f92a756e946ee1c4c64e9d9c083d13a2a.zip chromium_src-a596e11f92a756e946ee1c4c64e9d9c083d13a2a.tar.gz chromium_src-a596e11f92a756e946ee1c4c64e9d9c083d13a2a.tar.bz2 |
Remove temporal logging code.
These code are introduced by following change for investigation.
http://codereview.chromium.org/8961010
BUG=107836
TEST=ui_tests
Review URL: http://codereview.chromium.org/9169068
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119207 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/extensions/extension_websocket_apitest.cc | 4 | ||||
-rw-r--r-- | chrome/test/ui/ppapi_uitest.cc | 4 | ||||
-rw-r--r-- | chrome/test/ui/ui_layout_test.cc | 6 |
3 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/extensions/extension_websocket_apitest.cc b/chrome/browser/extensions/extension_websocket_apitest.cc index 0c814d2..54f0936 100644 --- a/chrome/browser/extensions/extension_websocket_apitest.cc +++ b/chrome/browser/extensions/extension_websocket_apitest.cc @@ -2,7 +2,6 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/logging.h" #include "base/path_service.h" #include "chrome/browser/extensions/extension_apitest.h" #include "chrome/common/chrome_paths.h" @@ -12,9 +11,6 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, WebSocket) { FilePath websocket_root_dir; ASSERT_TRUE(PathService::Get(chrome::DIR_LAYOUT_TESTS, &websocket_root_dir)); - // TODO(toyoshim): Remove following logging after a bug investigation. - // http://crbug.com/107836 . - LOG(INFO) << "Assume LayoutTests in " << websocket_root_dir.MaybeAsASCII(); ui_test_utils::TestWebSocketServer server; ASSERT_TRUE(server.Start(websocket_root_dir)); diff --git a/chrome/test/ui/ppapi_uitest.cc b/chrome/test/ui/ppapi_uitest.cc index 4d297c4..b54659b 100644 --- a/chrome/test/ui/ppapi_uitest.cc +++ b/chrome/test/ui/ppapi_uitest.cc @@ -3,7 +3,6 @@ // found in the LICENSE file. #include "base/file_util.h" -#include "base/logging.h" #include "base/path_service.h" #include "base/test/test_timeouts.h" #include "build/build_config.h" @@ -128,9 +127,6 @@ class PPAPITestBase : public UITest { FilePath websocket_root_dir; ASSERT_TRUE( PathService::Get(chrome::DIR_LAYOUT_TESTS, &websocket_root_dir)); - // TODO(toyoshim): Remove following logging after a bug investigation. - // http://crbug.com/107836 . - LOG(INFO) << "Assume LayoutTests in " << websocket_root_dir.MaybeAsASCII(); ui_test_utils::TestWebSocketServer server; ASSERT_TRUE(server.Start(websocket_root_dir)); diff --git a/chrome/test/ui/ui_layout_test.cc b/chrome/test/ui/ui_layout_test.cc index e9b479b..5d43171 100644 --- a/chrome/test/ui/ui_layout_test.cc +++ b/chrome/test/ui/ui_layout_test.cc @@ -51,9 +51,6 @@ void UILayoutTest::InitializeForLayoutTest(const FilePath& test_parent_dir, int port) { FilePath src_dir; ASSERT_TRUE(PathService::Get(chrome::DIR_LAYOUT_TESTS, &src_dir)); - // TODO(toyoshim): Remove following logging after a bug investigation. - // http://crbug.com/107836 . - LOG(INFO) << "Assume LayoutTests in " << src_dir.MaybeAsASCII(); layout_test_dir_ = src_dir.Append(test_parent_dir); layout_test_dir_ = layout_test_dir_.Append(test_case_dir); ASSERT_TRUE(file_util::DirectoryExists(layout_test_dir_)); @@ -137,9 +134,6 @@ void UILayoutTest::AddResourceForLayoutTest(const FilePath& parent_dir, const FilePath& resource_name) { FilePath source; ASSERT_TRUE(PathService::Get(chrome::DIR_LAYOUT_TESTS, &source)); - // TODO(toyoshim): Remove following logging after a bug investigation. - // http://crbug.com/107836 . - LOG(INFO) << "Assume LayoutTests in " << parent_dir.MaybeAsASCII(); source = source.Append(parent_dir); source = source.Append(resource_name); |