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

Side by Side Diff: chrome/browser/task_management/providers/web_contents/renderer_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_WEB_CONTENTS_RENDERER_TASK_H_ 5 #ifndef CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_
6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H_ 6 #define CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_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 #include "components/favicon/core/favicon_driver_observer.h" 13 #include "components/favicon/core/favicon_driver_observer.h"
13 #include "content/public/browser/navigation_entry.h" 14 #include "content/public/browser/navigation_entry.h"
14 15
15 class ProcessResourceUsage; 16 class ProcessResourceUsage;
16 17
17 namespace content { 18 namespace content {
18 class RenderProcessHost; 19 class RenderProcessHost;
19 class WebContents; 20 class WebContents;
20 } // namespace content 21 } // namespace content
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 128
128 base::TerminationStatus termination_status_; 129 base::TerminationStatus termination_status_;
129 int termination_error_code_; 130 int termination_error_code_;
130 131
131 DISALLOW_COPY_AND_ASSIGN(RendererTask); 132 DISALLOW_COPY_AND_ASSIGN(RendererTask);
132 }; 133 };
133 134
134 } // namespace task_management 135 } // namespace task_management
135 136
136 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H _ 137 #endif // CHROME_BROWSER_TASK_MANAGEMENT_PROVIDERS_WEB_CONTENTS_RENDERER_TASK_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698