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

Side by Side Diff: chrome/browser/memory_details_android.cc

Issue 579013002: Added authors to self Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Exasperation Created 6 years, 3 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 | « AUTHORS ('k') | no next file » | 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 #include "chrome/browser/memory_details.h" 5 #include "chrome/browser/memory_details.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 std::set<ProcessId> current_browser_processes; 128 std::set<ProcessId> current_browser_processes;
129 GetAllChildren(processes, roots, &current_browser_processes); 129 GetAllChildren(processes, roots, &current_browser_processes);
130 130
131 ProcessData current_browser; 131 ProcessData current_browser;
132 GetProcessDataMemoryInformation(current_browser_processes, &current_browser); 132 GetProcessDataMemoryInformation(current_browser_processes, &current_browser);
133 current_browser.name = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME); 133 current_browser.name = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME);
134 current_browser.process_name = 134 current_browser.process_name =
135 base::ASCIIToUTF16(chrome::kBrowserProcessExecutableName); 135 base::ASCIIToUTF16(chrome::kBrowserProcessExecutableName);
136 process_data_.push_back(current_browser); 136 process_data_.push_back(current_browser);
137 137
138 // Finally return to the browser thread. 138 // FINALLY return to the browser thread.
139 BrowserThread::PostTask( 139 BrowserThread::PostTask(
140 BrowserThread::UI, FROM_HERE, 140 BrowserThread::UI, FROM_HERE,
141 base::Bind(&MemoryDetails::CollectChildInfoOnUIThread, this)); 141 base::Bind(&MemoryDetails::CollectChildInfoOnUIThread, this));
142 } 142 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698