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

Side by Side Diff: third_party/WebKit/public/platform/WebCompositorSupport.h

Issue 1547893003: WIP - compositor worker mega patch. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 class WebCompositorAnimationTimeline; 45 class WebCompositorAnimationTimeline;
46 class WebContentLayer; 46 class WebContentLayer;
47 class WebContentLayerClient; 47 class WebContentLayerClient;
48 class WebExternalTextureLayer; 48 class WebExternalTextureLayer;
49 class WebExternalTextureLayerClient; 49 class WebExternalTextureLayerClient;
50 class WebFilterAnimationCurve; 50 class WebFilterAnimationCurve;
51 class WebFilterOperations; 51 class WebFilterOperations;
52 class WebFloatAnimationCurve; 52 class WebFloatAnimationCurve;
53 class WebGraphicsContext3D; 53 class WebGraphicsContext3D;
54 class WebImageLayer; 54 class WebImageLayer;
55 class WebMutator;
56 class WebMutatorClient;
55 class WebLayer; 57 class WebLayer;
56 class WebScrollbarLayer; 58 class WebScrollbarLayer;
57 class WebScrollbarThemeGeometry; 59 class WebScrollbarThemeGeometry;
58 class WebTransformAnimationCurve; 60 class WebTransformAnimationCurve;
59 class WebTransformOperations; 61 class WebTransformOperations;
60 62
61 class WebCompositorSupport { 63 class WebCompositorSupport {
62 public: 64 public:
63 65
64 // Layers ------------------------------------------------------- 66 // Layers -------------------------------------------------------
(...skipping 29 matching lines...) Expand all
94 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return nullptr; } 96 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return nullptr; }
95 97
96 virtual WebTransformOperations* createTransformOperations() { return nullptr ; } 98 virtual WebTransformOperations* createTransformOperations() { return nullptr ; }
97 99
98 virtual WebFilterOperations* createFilterOperations() { return nullptr; } 100 virtual WebFilterOperations* createFilterOperations() { return nullptr; }
99 101
100 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return nullp tr; } 102 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return nullp tr; }
101 103
102 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return n ullptr; } 104 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return n ullptr; }
103 105
106 virtual WebMutatorClient* createMutatorClient(WebMutator*) { return nullptr; }
107
104 protected: 108 protected:
105 virtual ~WebCompositorSupport() { } 109 virtual ~WebCompositorSupport() { }
106 }; 110 };
107 111
108 } 112 }
109 113
110 #endif // WebCompositorSupport_h 114 #endif // WebCompositorSupport_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698