Add include guards for SkBRDAllocator
authorscroggo <scroggo@google.com>
Thu, 12 Nov 2015 06:54:24 +0000 (22:54 -0800)
committerCommit bot <commit-bot@chromium.org>
Thu, 12 Nov 2015 06:54:24 +0000 (22:54 -0800)
One step towards fixing the master-skia build

Review URL: https://codereview.chromium.org/1440883002

tools/android/SkBRDAllocator.h

index d587c03..f003af6 100644 (file)
@@ -5,6 +5,9 @@
  * found in the LICENSE file.
  */
 
+#ifndef SkBRDAllocator_DEFINED
+#define SkBRDAllocator_DEFINED
+
 #include "SkBitmap.h"
 #include "SkCodec.h"
 
@@ -22,3 +25,5 @@ public:
      */
     virtual SkCodec::ZeroInitialized zeroInit() const = 0;
 };
+
+#endif