Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: content/browser/loader/resource_scheduler_filter.h

Issue 638503002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[download|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_SCHEDULER_FILTER_H_ 5 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_SCHEDULER_FILTER_H_
6 #define CONTENT_BROWSER_LOADER_RESOURCE_SCHEDULER_FILTER_H_ 6 #define CONTENT_BROWSER_LOADER_RESOURCE_SCHEDULER_FILTER_H_
7 7
8 #include "content/public/browser/browser_message_filter.h" 8 #include "content/public/browser/browser_message_filter.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 // This class listens for incoming ViewHostMsgs that are applicable to the 12 // This class listens for incoming ViewHostMsgs that are applicable to the
13 // ResourceScheduler and invokes the appropriate notifications. It must be 13 // ResourceScheduler and invokes the appropriate notifications. It must be
14 // inserted before the RenderMessageFilter, because the ResourceScheduler runs 14 // inserted before the RenderMessageFilter, because the ResourceScheduler runs
15 // on the IO thread and we want to see the messages before the view messages are 15 // on the IO thread and we want to see the messages before the view messages are
16 // bounced to the UI thread. 16 // bounced to the UI thread.
17 class ResourceSchedulerFilter : public BrowserMessageFilter { 17 class ResourceSchedulerFilter : public BrowserMessageFilter {
18 public: 18 public:
19 explicit ResourceSchedulerFilter(int child_id); 19 explicit ResourceSchedulerFilter(int child_id);
20 20
21 // BrowserMessageFilter methods: 21 // BrowserMessageFilter methods:
22 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 22 virtual bool OnMessageReceived(const IPC::Message& message) override;
23 23
24 private: 24 private:
25 virtual ~ResourceSchedulerFilter(); 25 virtual ~ResourceSchedulerFilter();
26 26
27 int child_id_; 27 int child_id_;
28 }; 28 };
29 29
30 } // namespace content 30 } // namespace content
31 31
32 #endif // CONTENT_BROWSER_LOADER_RESOURCE_SCHEDULER_FILTER_H_ 32 #endif // CONTENT_BROWSER_LOADER_RESOURCE_SCHEDULER_FILTER_H_
OLDNEW
« no previous file with comments | « content/browser/loader/resource_scheduler.cc ('k') | content/browser/loader/resource_scheduler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698