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

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

Issue 1305343007: Remove WebCompositorSupport::createDisplayItemList(), nothing uses it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 23 matching lines...) Expand all
34 #include "WebScrollbar.h" 34 #include "WebScrollbar.h"
35 #include "WebScrollbarThemePainter.h" 35 #include "WebScrollbarThemePainter.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class WebCompositorAnimationCurve; 39 class WebCompositorAnimationCurve;
40 class WebCompositorAnimationPlayer; 40 class WebCompositorAnimationPlayer;
41 class WebCompositorAnimationTimeline; 41 class WebCompositorAnimationTimeline;
42 class WebContentLayer; 42 class WebContentLayer;
43 class WebContentLayerClient; 43 class WebContentLayerClient;
44 class WebDisplayItemList;
45 class WebExternalTextureLayer; 44 class WebExternalTextureLayer;
46 class WebExternalTextureLayerClient; 45 class WebExternalTextureLayerClient;
47 class WebFilterAnimationCurve; 46 class WebFilterAnimationCurve;
48 class WebFilterOperations; 47 class WebFilterOperations;
49 class WebFloatAnimationCurve; 48 class WebFloatAnimationCurve;
50 class WebGraphicsContext3D; 49 class WebGraphicsContext3D;
51 class WebImageLayer; 50 class WebImageLayer;
52 class WebLayer; 51 class WebLayer;
53 class WebScrollbarLayer; 52 class WebScrollbarLayer;
54 class WebScrollbarThemeGeometry; 53 class WebScrollbarThemeGeometry;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return nullptr; } 86 virtual WebTransformAnimationCurve* createTransformAnimationCurve() { return nullptr; }
88 87
89 virtual WebTransformOperations* createTransformOperations() { return nullptr ; } 88 virtual WebTransformOperations* createTransformOperations() { return nullptr ; }
90 89
91 virtual WebFilterOperations* createFilterOperations() { return nullptr; } 90 virtual WebFilterOperations* createFilterOperations() { return nullptr; }
92 91
93 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return nullp tr; } 92 virtual WebCompositorAnimationPlayer* createAnimationPlayer() { return nullp tr; }
94 93
95 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return n ullptr; } 94 virtual WebCompositorAnimationTimeline* createAnimationTimeline() { return n ullptr; }
96 95
97 virtual WebDisplayItemList* createDisplayItemList() { return nullptr; }
98
99 protected: 96 protected:
100 virtual ~WebCompositorSupport() { } 97 virtual ~WebCompositorSupport() { }
101 }; 98 };
102 99
103 } 100 }
104 101
105 #endif // WebCompositorSupport_h 102 #endif // WebCompositorSupport_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698