The Great Blink mv for source files, part 2.

Move and rename files.

NOAUTOREVERT=true
NOPRESUBMIT=true
NOTREECHECKS=true
Bug: 768828
[email protected]
NOTRY=true

Change-Id: I66d3b155808bc5bdbf237b80208e1e552bcf7f28
Reviewed-on: https://chromium-review.googlesource.com/1001153
Reviewed-by: Blink Reformat <[email protected]>
Commit-Queue: Blink Reformat <[email protected]>
Cr-Original-Commit-Position: refs/heads/master@{#549061}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 0aee4434a4dba42a42abaea9bfbc0cd196a63bc1
diff --git a/front_end/network/webSocketFrameView.css b/front_end/network/webSocketFrameView.css
new file mode 100644
index 0000000..9e95e84
--- /dev/null
+++ b/front_end/network/webSocketFrameView.css
@@ -0,0 +1,64 @@
+/*
+ * Copyright (c) 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.
+ */
+
+.websocket-frame-view {
+    -webkit-user-select: text;
+}
+
+.websocket-frame-view .data-grid {
+    flex: auto;
+    border: none;
+}
+
+.websocket-frame-view .data-grid .data {
+    background-image: none;
+}
+
+.websocket-frame-view-td {
+    border-bottom: 1px solid #ccc;
+}
+
+.websocket-frame-view .data-grid tr.selected {
+    background-color: #def;
+}
+
+.websocket-frame-view .data-grid td,
+.websocket-frame-view .data-grid th {
+    border-left-color: #ccc;
+}
+
+.websocket-frame-view-row-send td:first-child::before {
+    content: "\2B06 ";
+    color: #080;
+}
+
+.websocket-frame-view-row-receive td:first-child::before {
+    content: "\2B07 ";
+    color: #E65100;
+}
+
+.data-grid:focus .websocket-frame-view-row-send.selected td:first-child::before,
+.data-grid:focus .websocket-frame-view-row-receive.selected td:first-child::before {
+    color: white;
+}
+
+.websocket-frame-view-row-send {
+    background-color: rgb(226, 247, 218);
+}
+
+.websocket-frame-view-row-opcode {
+    background-color: rgb(255, 255, 232);
+    color: rgb(170, 111, 71);
+}
+
+.websocket-frame-view-row-error {
+    background-color: rgb(255, 237, 237);
+    color: rgb(182, 0, 0);
+}
+
+.websocket-frame-view .toolbar {
+    border-bottom: var(--divider-border);
+}