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

Side by Side Diff: content/browser/profiler_controller_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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
« no previous file with comments | « content/browser/ppapi_plugin_process_host.cc ('k') | content/browser/profiler_message_filter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_PROFILER_CONTROLLER_IMPL_H_ 5 #ifndef CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_
6 #define CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ 6 #define CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_
7 7
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "base/process/process.h" 9 #include "base/process/process.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 24 matching lines...) Expand all
35 void OnPendingProcesses(int sequence_number, int pending_processes, bool end); 35 void OnPendingProcesses(int sequence_number, int pending_processes, bool end);
36 36
37 // Send the |profiler_data| back to the |subscriber_|. 37 // Send the |profiler_data| back to the |subscriber_|.
38 // This can be called from any thread. 38 // This can be called from any thread.
39 void OnProfilerDataCollected( 39 void OnProfilerDataCollected(
40 int sequence_number, 40 int sequence_number,
41 const tracked_objects::ProcessDataSnapshot& profiler_data, 41 const tracked_objects::ProcessDataSnapshot& profiler_data,
42 int process_type); 42 int process_type);
43 43
44 // ProfilerController implementation: 44 // ProfilerController implementation:
45 virtual void Register(ProfilerSubscriber* subscriber) OVERRIDE; 45 virtual void Register(ProfilerSubscriber* subscriber) override;
46 virtual void Unregister(const ProfilerSubscriber* subscriber) OVERRIDE; 46 virtual void Unregister(const ProfilerSubscriber* subscriber) override;
47 virtual void GetProfilerData(int sequence_number) OVERRIDE; 47 virtual void GetProfilerData(int sequence_number) override;
48 48
49 private: 49 private:
50 friend struct DefaultSingletonTraits<ProfilerControllerImpl>; 50 friend struct DefaultSingletonTraits<ProfilerControllerImpl>;
51 51
52 // Contact child processes and get their profiler data. 52 // Contact child processes and get their profiler data.
53 void GetProfilerDataFromChildProcesses(int sequence_number); 53 void GetProfilerDataFromChildProcesses(int sequence_number);
54 54
55 ProfilerSubscriber* subscriber_; 55 ProfilerSubscriber* subscriber_;
56 56
57 DISALLOW_COPY_AND_ASSIGN(ProfilerControllerImpl); 57 DISALLOW_COPY_AND_ASSIGN(ProfilerControllerImpl);
58 }; 58 };
59 59
60 } // namespace content 60 } // namespace content
61 61
62 #endif // CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_ 62 #endif // CONTENT_BROWSER_PROFILER_CONTROLLER_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/ppapi_plugin_process_host.cc ('k') | content/browser/profiler_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698