예제 #1
0
        public FirefoxDownloadHistoryAnalyzer(string location)
        {
            client        = new SQLite.Client(location);
            this.location = location;



            Console.WriteLine("FF DOWNLOADS location:" + location);
        }
예제 #2
0
 public FirefoxBrowserHistoryAnalyzer(string location)
 {
     client        = new SQLite.Client(location);
     this.location = location;
 }
예제 #3
0
 public FirefoxCookiesAnalyzer(string location)
 {
     client        = new SQLite.Client(location);
     this.location = location;
 }
예제 #4
0
 public FirefoxAutofillAnalyzer(string location)
 {
     client        = new SQLite.Client(location);
     this.location = location;
 }
예제 #5
0
 public ChromeSearchHistoryAnalyzer(string location)
 {
     client        = new SQLite.Client(location);
     this.location = location;
 }
예제 #6
0
 public ChromePasswordsAnalyzer(string location)
 {
     client        = new SQLite.Client(location);
     this.location = location;
 }