| Index: chrome/renderer/chrome_render_process_observer.cc
|
| diff --git a/chrome/renderer/chrome_render_process_observer.cc b/chrome/renderer/chrome_render_process_observer.cc
|
| index b25d9b77b276fb804c99c18ae636ce8a3697ed56..87a69fcfd681acc358ee0808957de4e0f16aa918 100644
|
| --- a/chrome/renderer/chrome_render_process_observer.cc
|
| +++ b/chrome/renderer/chrome_render_process_observer.cc
|
| @@ -70,7 +70,7 @@ class RendererResourceDelegate : public content::ResourceDispatcherDelegate {
|
| virtual content::RequestPeer* OnRequestComplete(
|
| content::RequestPeer* current_peer,
|
| content::ResourceType resource_type,
|
| - int error_code) OVERRIDE {
|
| + int error_code) override {
|
| // Update the browser about our cache.
|
| // Rate limit informing the host of our cache stats.
|
| if (!weak_factory_.HasWeakPtrs()) {
|
| @@ -93,7 +93,7 @@ class RendererResourceDelegate : public content::ResourceDispatcherDelegate {
|
| virtual content::RequestPeer* OnReceivedResponse(
|
| content::RequestPeer* current_peer,
|
| const std::string& mime_type,
|
| - const GURL& url) OVERRIDE {
|
| + const GURL& url) override {
|
| #if defined(ENABLE_EXTENSIONS)
|
| return ExtensionLocalizationPeer::CreateExtensionLocalizationPeer(
|
| current_peer, RenderThread::Get(), mime_type, url);
|
|
|