Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: net/spdy/spdy_header_block_unittest.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/spdy/spdy_header_block.cc ('k') | net/spdy/spdy_headers_block_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_header_block_unittest.cc
diff --git a/net/spdy/spdy_header_block_unittest.cc b/net/spdy/spdy_header_block_unittest.cc
deleted file mode 100644
index 1b6b449dc9428b5d8b2110e51910885bd5b8a1ba..0000000000000000000000000000000000000000
--- a/net/spdy/spdy_header_block_unittest.cc
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2012 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 "net/spdy/spdy_header_block.h"
-
-#include "base/memory/scoped_ptr.h"
-#include "base/values.h"
-#include "net/base/net_log.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace net {
-
-namespace {
-
-TEST(SpdyHeaderBlockTest, ToNetLogParamAndBackAgain) {
- SpdyHeaderBlock headers;
- headers["A"] = "a";
- headers["B"] = "b";
-
- scoped_ptr<base::Value> event_param(
- SpdyHeaderBlockNetLogCallback(&headers, NetLog::LOG_ALL_BUT_BYTES));
-
- SpdyHeaderBlock headers2;
- ASSERT_TRUE(SpdyHeaderBlockFromNetLogParam(event_param.get(), &headers2));
- EXPECT_EQ(headers, headers2);
-}
-
-} // namespace
-
-} // namespace net
« no previous file with comments | « net/spdy/spdy_header_block.cc ('k') | net/spdy/spdy_headers_block_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698