blob: 4422e58d612f03019d446bdc31c7bc73749945e9 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/media/router/data_decoder_util.h"
#include "base/no_destructor.h"
namespace media_router {
data_decoder::DataDecoder& GetDataDecoder() {
static base::NoDestructor<data_decoder::DataDecoder> decoder;
return *decoder;
}
} // namespace media_router