This file is indexed.

/usr/share/signon-ui/online-accounts-ui/Page.qml is in ubuntu-system-settings-online-accounts 0.3+14.04.20140328-0ubuntu3.

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
26
27
28
29
30
31
32
33
34
35
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1 as ListItem

Page {
    id: root

    Loader {
        id: loader
        anchors {
            top: parent.top
            left: parent.left
            right: parent.right
            bottom: cancelButton.top
            bottomMargin: Math.max(osk.height - cancelButton.height, 0)
        }
        focus: true
        sourceComponent: browserComponent
    }

    ListItem.SingleControl {
        id: cancelButton
        anchors {
            left: parent.left
            right: parent.right
            bottom: parent.bottom
        }
        control: Button {
            text: i18n.dtr("ubuntu-system-settings-online-accounts", "Cancel")
            width: parent.width - units.gu(4)
            onClicked: request.cancel()
        }
        showDivider: false
    }
}