Commit e0f09778 authored by ricea@chromium.org's avatar ricea@chromium.org

Rename websockets/*_unittest.cc to *_test.cc

The style guide says that the _test suffix should be used for tests, and the
_unittest suffix is deprecated. Rename all the src/net/websockets test files to
match.

BUG=280943
TEST=net_unittests --gtest_filter="WebSocket*"

Review URL: https://chromiumcodereview.appspot.com/23614009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221708 0039d316-1c4b-4281-b951-d872f2087c98
parent 077ede16
...@@ -1870,14 +1870,14 @@ ...@@ -1870,14 +1870,14 @@
'url_request/view_cache_helper_unittest.cc', 'url_request/view_cache_helper_unittest.cc',
'websockets/websocket_basic_stream_test.cc', 'websockets/websocket_basic_stream_test.cc',
'websockets/websocket_channel_test.cc', 'websockets/websocket_channel_test.cc',
'websockets/websocket_errors_unittest.cc', 'websockets/websocket_errors_test.cc',
'websockets/websocket_frame_parser_unittest.cc', 'websockets/websocket_frame_parser_test.cc',
'websockets/websocket_frame_unittest.cc', 'websockets/websocket_frame_test.cc',
'websockets/websocket_handshake_handler_unittest.cc', 'websockets/websocket_handshake_handler_test.cc',
'websockets/websocket_handshake_handler_spdy_unittest.cc', 'websockets/websocket_handshake_handler_spdy_test.cc',
'websockets/websocket_job_unittest.cc', 'websockets/websocket_job_test.cc',
'websockets/websocket_net_log_params_unittest.cc', 'websockets/websocket_net_log_params_test.cc',
'websockets/websocket_throttle_unittest.cc', 'websockets/websocket_throttle_test.cc',
], ],
'conditions': [ 'conditions': [
['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
......
...@@ -12,18 +12,17 @@ https://docs.google.com/a/google.com/document/d/1_R6YjCIrm4kikJ3YeapcOU2Keqr3lVU ...@@ -12,18 +12,17 @@ https://docs.google.com/a/google.com/document/d/1_R6YjCIrm4kikJ3YeapcOU2Keqr3lVU
websocket_handshake_handler.cc websocket_handshake_handler.cc
websocket_handshake_handler.h websocket_handshake_handler.h
websocket_handshake_handler_unittest.cc websocket_handshake_handler_test.cc
websocket_handshake_handler_spdy2_unittest.cc websocket_handshake_handler_spdy_test.cc
websocket_handshake_handler_spdy3_unittest.cc
websocket_job.cc websocket_job.cc
websocket_job.h websocket_job.h
websocket_job_unittest.cc websocket_job_test.cc
websocket_net_log_params.cc websocket_net_log_params.cc
websocket_net_log_params.h websocket_net_log_params.h
websocket_net_log_params_unittest.cc websocket_net_log_params_test.cc
websocket_throttle.cc websocket_throttle.cc
websocket_throttle.h websocket_throttle.h
websocket_throttle_unittest.cc websocket_throttle_test.cc
The following files are part of the new implementation. The new implementation The following files are part of the new implementation. The new implementation
performs framing and implements protocol semantics in the browser process, and performs framing and implements protocol semantics in the browser process, and
...@@ -38,14 +37,14 @@ websocket_channel.h ...@@ -38,14 +37,14 @@ websocket_channel.h
websocket_channel_test.cc websocket_channel_test.cc
websocket_errors.cc websocket_errors.cc
websocket_errors.h websocket_errors.h
websocket_errors_unittest.cc websocket_errors_test.cc
websocket_event_interface.h websocket_event_interface.h
websocket_frame.cc websocket_frame.cc
websocket_frame.h websocket_frame.h
websocket_frame_parser.cc websocket_frame_parser.cc
websocket_frame_parser.h websocket_frame_parser.h
websocket_frame_parser_unittest.cc websocket_frame_parser_test.cc
websocket_frame_unittest.cc websocket_frame_test.cc
websocket_mux.h websocket_mux.h
websocket_stream_base.h websocket_stream_base.h
websocket_stream.cc websocket_stream.cc
......
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment