This file is indexed.

/usr/include/compiz/animation/fade.h is in compiz-dev 1:0.9.13.1+18.04.20180302-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ANIMATION_FADE_H
#define ANIMATION_FADE_H
#include "animation.h"
class FadeAnim :
virtual public Animation
{
public:
     FadeAnim (CompWindow *w,
	       WindowEvent curWindowEvent,
	       float duration,
	       const AnimEffect info,
	       const CompRect &icon);
public:
     void updateBB (CompOutput &output);
     bool updateBBUsed () { return true; }
     void updateAttrib (GLWindowPaintAttrib &wAttrib);
     virtual bool requiresTransformedWindow () const { return false; }
     virtual float getFadeProgress () { return progressLinear (); }
};
#endif