Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / renderer / chrome_render_process_observer.cc
index b25d9b7..ad3ab00 100644 (file)
@@ -67,10 +67,9 @@ class RendererResourceDelegate : public content::ResourceDispatcherDelegate {
       : weak_factory_(this) {
   }
 
-  virtual content::RequestPeer* OnRequestComplete(
-      content::RequestPeer* current_peer,
-      content::ResourceType resource_type,
-      int error_code) OVERRIDE {
+  content::RequestPeer* OnRequestComplete(content::RequestPeer* current_peer,
+                                          content::ResourceType resource_type,
+                                          int error_code) override {
     // Update the browser about our cache.
     // Rate limit informing the host of our cache stats.
     if (!weak_factory_.HasWeakPtrs()) {
@@ -90,10 +89,9 @@ class RendererResourceDelegate : public content::ResourceDispatcherDelegate {
         resource_type, current_peer, error_code);
   }
 
-  virtual content::RequestPeer* OnReceivedResponse(
-      content::RequestPeer* current_peer,
-      const std::string& mime_type,
-      const GURL& url) OVERRIDE {
+  content::RequestPeer* OnReceivedResponse(content::RequestPeer* current_peer,
+                                           const std::string& mime_type,
+                                           const GURL& url) override {
 #if defined(ENABLE_EXTENSIONS)
     return ExtensionLocalizationPeer::CreateExtensionLocalizationPeer(
         current_peer, RenderThread::Get(), mime_type, url);