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

Unified Diff: android_webview/browser/input_stream_impl.h

Issue 2889193004: [WebView] Replace AwContentsIoThreadClient, InputStream and AwWebResourceResponse (Closed)
Patch Set: fix test crash Created 3 years, 7 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
Index: android_webview/browser/input_stream_impl.h
diff --git a/android_webview/browser/input_stream_impl.h b/android_webview/browser/input_stream_impl.h
deleted file mode 100644
index ef8d91bb77bbe4ccd63c730865d77845951c821b..0000000000000000000000000000000000000000
--- a/android_webview/browser/input_stream_impl.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ANDROID_WEBVIEW_NATIVE_INPUT_STREAM_H_
-#define ANDROID_WEBVIEW_NATIVE_INPUT_STREAM_H_
-
-#include <stdint.h>
-
-#include "android_webview/browser/input_stream.h"
-#include "base/android/scoped_java_ref.h"
-#include "base/compiler_specific.h"
-#include "base/macros.h"
-
-namespace net {
-class IOBuffer;
-}
-
-namespace android_webview {
-
-class InputStreamImpl : public InputStream {
- public:
- // Maximum size of |buffer_|.
- static const int kBufferSize;
-
- static const InputStreamImpl* FromInputStream(
- const InputStream* input_stream);
-
- // |stream| should be an instance of the InputStream Java class.
- // |stream| can't be null.
- InputStreamImpl(const base::android::JavaRef<jobject>& stream);
- ~InputStreamImpl() override;
-
- // Gets the underlying Java object. Guaranteed non-NULL.
- const base::android::JavaRef<jobject>& jobj() const { return jobject_; }
-
- // InputStream implementation.
- bool BytesAvailable(int* bytes_available) const override;
- bool Skip(int64_t n, int64_t* bytes_skipped) override;
- bool Read(net::IOBuffer* dest, int length, int* bytes_read) override;
-
- protected:
- // Parameterless constructor exposed for testing.
- InputStreamImpl();
-
- private:
- base::android::ScopedJavaGlobalRef<jobject> jobject_;
- base::android::ScopedJavaGlobalRef<jbyteArray> buffer_;
-
- DISALLOW_COPY_AND_ASSIGN(InputStreamImpl);
-};
-
-} // namespace android_webview
-
-#endif // ANDROID_WEBVIEW_NATIVE_INPUT_STREAM_H_

Powered by Google App Engine
This is Rietveld 408576698