Remove SkFrontBufferedStream

Bug: skia:10154

Now that Android has moved to the new name
(android::skia::FrontBufferedStream), there is no need for this
redirect.

Change-Id: I1f2203a1d50bb222b8c105d8393a3b11ad6ee462
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/285716
Reviewed-by: Derek Sollenberger <djsollen@google.com>
Commit-Queue: Leon Scroggins <scroggo@google.com>
This commit is contained in:
Leon Scroggins III 2020-04-27 15:16:56 -04:00 committed by Skia Commit-Bot
parent 4baa7326cc
commit 7676f4ecf3
2 changed files with 2 additions and 22 deletions

View File

@ -1,21 +0,0 @@
/*
* Copyright 2013 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkFrontBufferedStream_DEFINED
#define SkFrontBufferedStream_DEFINED
#include "FrontBufferedStream.h"
// Temporary pass through until Android updates to use the new API.
class SK_API SkFrontBufferedStream {
public:
static std::unique_ptr<SkStreamRewindable> Make(std::unique_ptr<SkStream> stream,
size_t minBufferSize) {
return android::skia::FrontBufferedStream::Make(std::move(stream), minBufferSize);
}
};
#endif // SkFrontBufferedStream_DEFINED

View File

@ -15,7 +15,8 @@
'../../build/fuchsia',
'../../build_overrides',
'../../buildtools',
'../../client_utils/android',
'../../client_utils/android/FrontBufferedStream.cpp',
'../../client_utils/android/FrontBufferedStream.h',
'../../dm',
'../../docs/examples',
'../../example',