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

Unified Diff: ui/ozone/platform/caca/scoped_caca_types.h

Issue 2445323002: Ozone: Remove the caca platform from the tree (Closed)
Patch Set: Created 4 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
« no previous file with comments | « ui/ozone/platform/caca/ozone_platform_caca.cc ('k') | ui/ozone/platform/caca/scoped_caca_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/caca/scoped_caca_types.h
diff --git a/ui/ozone/platform/caca/scoped_caca_types.h b/ui/ozone/platform/caca/scoped_caca_types.h
deleted file mode 100644
index 0db7b15682a50665984493eb737b50faa345f9d9..0000000000000000000000000000000000000000
--- a/ui/ozone/platform/caca/scoped_caca_types.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2014 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 UI_OZONE_PLATFORM_CACA_SCOPED_CACA_TYPES_H_
-#define UI_OZONE_PLATFORM_CACA_SCOPED_CACA_TYPES_H_
-
-#include <memory>
-
-typedef struct caca_canvas caca_canvas_t;
-typedef struct caca_dither caca_dither_t;
-typedef struct caca_display caca_display_t;
-
-namespace ui {
-
-struct CacaCanvasDeleter {
- void operator()(caca_canvas_t* canvas) const;
-};
-
-struct CacaDisplayDeleter {
- void operator()(caca_display_t* display) const;
-};
-
-struct CacaDitherDeleter {
- void operator()(caca_dither_t* dither) const;
-};
-
-typedef std::unique_ptr<caca_canvas_t, CacaCanvasDeleter> ScopedCacaCanvas;
-typedef std::unique_ptr<caca_display_t, CacaDisplayDeleter> ScopedCacaDisplay;
-typedef std::unique_ptr<caca_dither_t, CacaDitherDeleter> ScopedCacaDither;
-
-} // namespace ui
-
-#endif // UI_OZONE_PLATFORM_CACA_SCOPED_CACA_TYPES_H_
« no previous file with comments | « ui/ozone/platform/caca/ozone_platform_caca.cc ('k') | ui/ozone/platform/caca/scoped_caca_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698