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

Side by Side Diff: Source/core/platform/graphics/filters/custom/CustomFilterValidatedProgram.cpp

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2012 Adobe Systems Incorporated. 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 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 16 matching lines...) Expand all
27 * SUCH DAMAGE. 27 * SUCH DAMAGE.
28 */ 28 */
29 29
30 #include "config.h" 30 #include "config.h"
31 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h" 31 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h"
32 32
33 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" 33 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h"
34 #include "platform/NotImplemented.h" 34 #include "platform/NotImplemented.h"
35 #include "platform/graphics/angle/ANGLEPlatformBridge.h" 35 #include "platform/graphics/angle/ANGLEPlatformBridge.h"
36 #include "platform/graphics/filters/custom/CustomFilterConstants.h" 36 #include "platform/graphics/filters/custom/CustomFilterConstants.h"
37 #include "platform/graphics/filters/custom/CustomFilterProgramInfo.h"
38 #include "wtf/HashMap.h" 37 #include "wtf/HashMap.h"
39 #include "wtf/text/StringBuilder.h" 38 #include "wtf/text/StringBuilder.h"
40 #include "wtf/text/StringHash.h" 39 #include "wtf/text/StringHash.h"
41 #include "wtf/Vector.h" 40 #include "wtf/Vector.h"
42 41
43 namespace WebCore { 42 namespace WebCore {
44 43
45 #define SHADER(Src) (#Src) 44 #define SHADER(Src) (#Src)
46 45
47 typedef HashMap<String, ShDataType> SymbolNameToTypeMap; 46 typedef HashMap<String, ShDataType> SymbolNameToTypeMap;
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 void CustomFilterValidatedProgram::platformInit() 607 void CustomFilterValidatedProgram::platformInit()
609 { 608 {
610 } 609 }
611 610
612 void CustomFilterValidatedProgram::platformDestroy() 611 void CustomFilterValidatedProgram::platformDestroy()
613 { 612 {
614 } 613 }
615 614
616 } // namespace WebCore 615 } // namespace WebCore
617 616
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698