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

Unified Diff: net/spdy/spdy_framer_test.cc

Issue 392883002: fix narrowing conversion warning in SpdyFramerTest.CreatePriority (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer_test.cc
diff --git a/net/spdy/spdy_framer_test.cc b/net/spdy/spdy_framer_test.cc
index 2d76d3ae2d6d196cfb9374235dd34fdcf348c688..ce460dcc260e7591afe632d1d928053114ba8c24 100644
--- a/net/spdy/spdy_framer_test.cc
+++ b/net/spdy/spdy_framer_test.cc
@@ -2987,7 +2987,7 @@ TEST_P(SpdyFramerTest, CreatePriority) {
SpdyFramer framer(spdy_version_);
const char kDescription[] = "PRIORITY frame";
- const char kType = static_cast<unsigned char>(
+ const unsigned char kType = static_cast<unsigned char>(
SpdyConstants::SerializeFrameType(spdy_version_, PRIORITY));
const unsigned char kFrameData[] = {
0x00, 0x05, kType, 0x00,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698