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

Unified Diff: android_webview/native/java_browser_view_renderer_helper.h

Issue 2863233002: [WebView] Move files from native to browser (Closed)
Patch Set: 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/native/java_browser_view_renderer_helper.h
diff --git a/android_webview/native/java_browser_view_renderer_helper.h b/android_webview/native/java_browser_view_renderer_helper.h
deleted file mode 100644
index 266626fb4a17364cafaee99d66b3baa12d923e8d..0000000000000000000000000000000000000000
--- a/android_webview/native/java_browser_view_renderer_helper.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright (c) 2013 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_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_
-#define ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_
-
-#include <jni.h>
-
-#include <memory>
-
-#include "ui/gfx/geometry/size.h"
-#include "ui/gfx/geometry/vector2d.h"
-
-class SkCanvas;
-struct AwDrawSWFunctionTable;
-
-namespace android_webview {
-
-class SoftwareCanvasHolder {
- public:
- static std::unique_ptr<SoftwareCanvasHolder> Create(
- jobject java_canvas,
- const gfx::Vector2d& scroll_correction,
- const gfx::Size& auxiliary_bitmap_size,
- bool force_auxiliary_bitmap);
-
- virtual ~SoftwareCanvasHolder() {}
-
- // The returned SkCanvas is still owned by this holder.
- virtual SkCanvas* GetCanvas() = 0;
-};
-
-void RasterHelperSetAwDrawSWFunctionTable(AwDrawSWFunctionTable* table);
-
-} // namespace android_webview
-
-#endif // ANDROID_WEBVIEW_NATIVE_JAVA_BROWSER_VIEW_RENDERER_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698