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

Side by Side Diff: Source/modules/websockets/WebSocketPerMessageDeflate.cpp

Issue 469773002: Cleanup blink:: prefix usage in Source/core/modules/[mediasource/*.cpp to websockets/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 m_failureReason = "Received invalid server_max_window_bits parameter "; 130 m_failureReason = "Received invalid server_max_window_bits parameter ";
131 return false; 131 return false;
132 } 132 }
133 ++numProcessedParameters; 133 ++numProcessedParameters;
134 } 134 }
135 135
136 if (numProcessedParameters != parameters.size()) { 136 if (numProcessedParameters != parameters.size()) {
137 m_failureReason = "Received an unexpected permessage-deflate extension p arameter"; 137 m_failureReason = "Received an unexpected permessage-deflate extension p arameter";
138 return false; 138 return false;
139 } 139 }
140 blink::Platform::current()->histogramEnumeration("WebCore.WebSocket.PerMessa geDeflateContextTakeOverMode", mode, WebSocketDeflater::ContextTakeOverModeMax); 140 Platform::current()->histogramEnumeration("WebCore.WebSocket.PerMessageDefla teContextTakeOverMode", mode, WebSocketDeflater::ContextTakeOverModeMax);
141 m_compress.enable(windowBits, mode); 141 m_compress.enable(windowBits, mode);
142 // Since we don't request server_no_context_takeover and server_max_window_b its, they should be ignored. 142 // Since we don't request server_no_context_takeover and server_max_window_b its, they should be ignored.
143 return true; 143 return true;
144 } 144 }
145 145
146 WebSocketPerMessageDeflate::WebSocketPerMessageDeflate() 146 WebSocketPerMessageDeflate::WebSocketPerMessageDeflate()
147 : m_enabled(false) 147 : m_enabled(false)
148 , m_deflateOngoing(false) 148 , m_deflateOngoing(false)
149 , m_inflateOngoing(false) 149 , m_inflateOngoing(false)
150 { 150 {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 m_inflater->reset(); 257 m_inflater->reset();
258 } 258 }
259 259
260 void WebSocketPerMessageDeflate::didFail() 260 void WebSocketPerMessageDeflate::didFail()
261 { 261 {
262 resetDeflateBuffer(); 262 resetDeflateBuffer();
263 resetInflateBuffer(); 263 resetInflateBuffer();
264 } 264 }
265 265
266 } // namespace blink 266 } // namespace blink
OLDNEW
« no previous file with comments | « Source/modules/websockets/WebSocketHandshake.cpp ('k') | Source/modules/websockets/WorkerThreadableWebSocketChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698