summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libtracker-miner/tracker-miner-fs.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libtracker-miner/tracker-miner-fs.h b/src/libtracker-miner/tracker-miner-fs.h
index 709db0b57..1c4fd9655 100644
--- a/src/libtracker-miner/tracker-miner-fs.h
+++ b/src/libtracker-miner/tracker-miner-fs.h
@@ -67,9 +67,6 @@ struct _TrackerMinerFS {
* @process_file_attributes: Called when the metadata associated with
* a file's attributes changes, for example, the mtime.
* @writeback_file: Called when a file must be written back
- * @query_info: Called when file information is needed, only used with
- * external crawlers when the file notifier needs information about
- * the file to know how to cache it or to check on details like mtime.
* @padding: Reserved for future API improvements.
*
* Prototype for the abstract class, @process_file must be implemented
@@ -105,11 +102,6 @@ typedef struct {
* @TRACKER_MINER_FS_ERROR_INIT: There was an error during
* initialization of the object. The specific details are in the
* message.
- * @TRACKER_MINER_FS_ERROR_HAVE_CRAWLER: This error is given when
- * trying to use an API that is only useful when
- * #TrackerMinerFS:external-crawler is set to %TRUE. By default it is
- * set to %FALSE. An example of such API is the
- * tracker_miner_fs_manually_notify_file().
*
* Possible errors returned when calling creating new objects based on
* the #TrackerMinerFS type and other APIs available with this class.
@@ -118,7 +110,6 @@ typedef struct {
**/
typedef enum {
TRACKER_MINER_FS_ERROR_INIT,
- TRACKER_MINER_FS_ERROR_HAVE_CRAWLER,
} TrackerMinerFSError;
GType tracker_miner_fs_get_type (void) G_GNUC_CONST;