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

Unified Diff: third_party/WebKit/public/web/WebGraphicsContext.h

Issue 1412593003: Remove WebGraphicsContext/WebGraphicsContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove another include WebGraphicsContext.h Created 5 years, 2 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: third_party/WebKit/public/web/WebGraphicsContext.h
diff --git a/third_party/WebKit/public/web/WebGraphicsContext.h b/third_party/WebKit/public/web/WebGraphicsContext.h
deleted file mode 100644
index 30053c6928e7d0ef2f56df65b86ab25a2b4f6929..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/web/WebGraphicsContext.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2015 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 WebGraphicsContext_h
-#define WebGraphicsContext_h
-
-#include "public/platform/WebCanvas.h"
-#include "public/platform/WebFloatRect.h"
-
-namespace blink {
-
-// Wraps a blink::GraphicsContext.
-// Internal consumers can extract the underlying context (via WebGraphicsContextImpl).
-// External consumers can make a single drawing using a WebCanvas.
-class WebGraphicsContext {
-public:
- virtual WebCanvas* beginDrawing(const WebFloatRect& bounds) = 0;
- virtual void endDrawing() = 0;
-
-protected:
- ~WebGraphicsContext() { }
-};
-
-} // namespace blink
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698