1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/websockets/websocket_deflate_predictor_impl.h"
6
7namespace net {
8
9typedef WebSocketDeflatePredictor::Result Result;
10
11Result WebSocketDeflatePredictorImpl::Predict(
12    const ScopedVector<WebSocketFrame>& frames,
13    size_t frame_index) {
14  return DEFLATE;
15}
16
17void WebSocketDeflatePredictorImpl::RecordInputDataFrame(
18    const WebSocketFrame* frame) {}
19
20void WebSocketDeflatePredictorImpl::RecordWrittenDataFrame(
21    const WebSocketFrame* frame) {}
22
23}  // namespace net
24