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

Side by Side Diff: chrome/browser/task_management/providers/child_process_task.h

Issue 1868363002: Replace scoped_ptr with std::unique_ptr in //ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@scopedptrcc
Patch Set: scopedptrui: rebase-make_scoped_ptr Created 4 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ 5 #ifndef CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_
6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ 6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/task_management/providers/task.h" 12 #include "chrome/browser/task_management/providers/task.h"
12 13
13 class ProcessResourceUsage; 14 class ProcessResourceUsage;
14 15
15 namespace content { 16 namespace content {
16 struct ChildProcessData; 17 struct ChildProcessData;
17 } // namespace content 18 } // namespace content
18 19
19 namespace task_management { 20 namespace task_management {
20 21
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // memory or not. 59 // memory or not.
59 const bool uses_v8_memory_; 60 const bool uses_v8_memory_;
60 61
61 DISALLOW_COPY_AND_ASSIGN(ChildProcessTask); 62 DISALLOW_COPY_AND_ASSIGN(ChildProcessTask);
62 }; 63 };
63 64
64 } // namespace task_management 65 } // namespace task_management
65 66
66 67
67 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_ 68 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_CHILD_PROCESS_TASK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698