Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / net / evicted_domain_cookie_counter.h
index 5731fa9..e2d8f77 100644 (file)
@@ -87,10 +87,10 @@ class EvictedDomainCookieCounter : public net::CookieMonster::Delegate {
   size_t GetStorageSize() const;
 
   // CookieMonster::Delegate implementation.
-  virtual void OnCookieChanged(const net::CanonicalCookie& cookie,
-                               bool removed,
-                               ChangeCause cause) OVERRIDE;
-  virtual void OnLoaded() OVERRIDE;
+  void OnCookieChanged(const net::CanonicalCookie& cookie,
+                       bool removed,
+                       ChangeCause cause) override;
+  void OnLoaded() override;
 
  private:
   // Identifier of an evicted cookie.
@@ -99,7 +99,7 @@ class EvictedDomainCookieCounter : public net::CookieMonster::Delegate {
   // Storage class of evicted cookie.
   typedef std::map<EvictedCookieKey, EvictedCookie*> EvictedCookieMap;
 
-  virtual ~EvictedDomainCookieCounter();
+  ~EvictedDomainCookieCounter() override;
 
   // Computes key for |cookie| compatible with CanonicalCookie::IsEquivalent(),
   // i.e., IsEquivalent(a, b) ==> GetKey(a) == GetKey(b).