diff options
author | abhishek.a21@samsung.com <abhishek.a21@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-05 16:30:41 +0000 |
---|---|---|
committer | abhishek.a21@samsung.com <abhishek.a21@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-05 16:30:41 +0000 |
commit | f5b1ad884b9b597b2d00321c9d97f85ec0cb3670 (patch) | |
tree | 3c3b702473e2ec2dd5d6d5b7a13db6c264b48a78 /content/test | |
parent | 4afd75016b1ea800edc34697470d3080076f7c44 (diff) | |
download | chromium_src-f5b1ad884b9b597b2d00321c9d97f85ec0cb3670.zip chromium_src-f5b1ad884b9b597b2d00321c9d97f85ec0cb3670.tar.gz chromium_src-f5b1ad884b9b597b2d00321c9d97f85ec0cb3670.tar.bz2 |
Migrate TestCommon to Chromium c++ style and remove un-used header.
Changes:
1) Run clang-format through source and header files.
2) Rename data member variables to use unix_hacker_ style.
3) Rename methods to use CamelCase style.
4) Rename file name to test_common.
5) Removed un-used test_common header.
BUG=331299
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=287382
Review URL: https://codereview.chromium.org/436133002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287549 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test')
-rw-r--r-- | content/test/layouttest_support.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/test/layouttest_support.cc b/content/test/layouttest_support.cc index 09c15a3..b57dadc 100644 --- a/content/test/layouttest_support.cc +++ b/content/test/layouttest_support.cc @@ -16,7 +16,7 @@ #include "content/renderer/render_thread_impl.h" #include "content/renderer/render_view_impl.h" #include "content/renderer/renderer_webkitplatformsupport_impl.h" -#include "content/shell/renderer/test_runner/TestCommon.h" +#include "content/shell/renderer/test_runner/test_common.h" #include "content/shell/renderer/test_runner/web_frame_test_proxy.h" #include "content/shell/renderer/test_runner/web_test_proxy.h" #include "third_party/WebKit/public/platform/WebBatteryStatus.h" @@ -253,7 +253,7 @@ std::string DumpHistoryItem(HistoryEntry::HistoryNode* node, result.append(indent, ' '); } - std::string url = normalizeLayoutTestURL(item.urlString().utf8()); + std::string url = NormalizeLayoutTestURL(item.urlString().utf8()); result.append(url); if (!item.target().isEmpty()) { result.append(" (in frame \""); |