Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / predictors / predictor_database.h
index bc53a9a..43e95a9 100644 (file)
@@ -24,7 +24,7 @@ class ResourcePrefetchPredictorTables;
 class PredictorDatabase : public KeyedService {
  public:
   explicit PredictorDatabase(Profile* profile);
-  virtual ~PredictorDatabase();
+  ~PredictorDatabase() override;
 
   scoped_refptr<AutocompleteActionPredictorTable> autocomplete_table();
   scoped_refptr<ResourcePrefetchPredictorTables> resource_prefetch_tables();
@@ -35,7 +35,7 @@ class PredictorDatabase : public KeyedService {
 
  private:
   // KeyedService
-  virtual void Shutdown() OVERRIDE;
+  void Shutdown() override;
 
   scoped_refptr<PredictorDatabaseInternal> db_;