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

Unified Diff: ui/compositor/reflector.h

Issue 865673003: Revert "compositor: Fix texture flipping for SW mirroring with surfaceless" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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/compositor/layer.cc ('k') | ui/compositor/reflector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/reflector.h
diff --git a/ui/compositor/reflector.h b/ui/compositor/reflector.h
index 6423c26768abd172723cce079a375340f1e89df8..41456957ffbf11989ad48229abca8e1a76419b17 100644
--- a/ui/compositor/reflector.h
+++ b/ui/compositor/reflector.h
@@ -6,20 +6,18 @@
#define UI_COMPOSITOR_REFLECTOR_H_
#include "base/memory/ref_counted.h"
-#include "ui/compositor/compositor_export.h"
namespace ui {
-class COMPOSITOR_EXPORT Reflector
- : public base::RefCountedThreadSafe<Reflector> {
+class Reflector : public base::RefCountedThreadSafe<Reflector> {
public:
- Reflector();
+ Reflector() {}
- virtual void OnMirroringCompositorResized();
+ virtual void OnMirroringCompositorResized() {}
protected:
friend class base::RefCountedThreadSafe<Reflector>;
- virtual ~Reflector();
+ virtual ~Reflector() {}
DISALLOW_COPY_AND_ASSIGN(Reflector);
};
« no previous file with comments | « ui/compositor/layer.cc ('k') | ui/compositor/reflector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698