This file is indexed.

/usr/include/compiz/animation/partialwindow.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
21
22
23
24
25
#ifndef ANIMATION_PARTIALWINDOW_H
#define ANIMATION_PARTIALWINDOW_H
#include "animation.h"
class PartialWindowAnim :
virtual public Animation
{
public:
    PartialWindowAnim (CompWindow *w,
		       WindowEvent curWindowEvent,
		       float duration,
		       const AnimEffect info,
		       const CompRect &icon);
    
    void addGeometry (const GLTexture::MatrixList &matrix,
		      const CompRegion            &region,
		      const CompRegion            &clip,
		      unsigned int                maxGridWidth,
		      unsigned int                maxGridHeight);
    
protected:
    bool mUseDrawRegion;
    CompRegion mDrawRegion;
    
};
#endif