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

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

Issue 3058027: Add #include utf_string_conversions.h to all files that use ASCIIToWide and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 <unistd.h> 7 #include <unistd.h>
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #include <dirent.h> 9 #include <dirent.h>
10 10
11 #include "base/eintr_wrapper.h" 11 #include "base/eintr_wrapper.h"
12 #include "base/file_version_info.h" 12 #include "base/file_version_info.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "base/process_util.h" 14 #include "base/process_util.h"
15 #include "base/utf_string_conversions.h"
15 #include "chrome/browser/browser_child_process_host.h" 16 #include "chrome/browser/browser_child_process_host.h"
16 #include "chrome/browser/browser_process.h" 17 #include "chrome/browser/browser_process.h"
17 #include "chrome/browser/chrome_thread.h" 18 #include "chrome/browser/chrome_thread.h"
18 #include "chrome/browser/zygote_host_linux.h" 19 #include "chrome/browser/zygote_host_linux.h"
19 #include "chrome/common/chrome_constants.h" 20 #include "chrome/common/chrome_constants.h"
20 #include "chrome/common/url_constants.h" 21 #include "chrome/common/url_constants.h"
21 #include "grit/chromium_strings.h" 22 #include "grit/chromium_strings.h"
22 23
23 // Known browsers which we collect details for. 24 // Known browsers which we collect details for.
24 enum BrowserType { 25 enum BrowserType {
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 } 263 }
263 264
264 process_data_.push_back(browser); 265 process_data_.push_back(browser);
265 } 266 }
266 267
267 // Finally return to the browser thread. 268 // Finally return to the browser thread.
268 ChromeThread::PostTask( 269 ChromeThread::PostTask(
269 ChromeThread::UI, FROM_HERE, 270 ChromeThread::UI, FROM_HERE,
270 NewRunnableMethod(this, &MemoryDetails::CollectChildInfoOnUIThread)); 271 NewRunnableMethod(this, &MemoryDetails::CollectChildInfoOnUIThread));
271 } 272 }
OLDNEW
« no previous file with comments | « chrome/browser/importer/toolbar_importer_unittest.cc ('k') | chrome/browser/nacl_host/nacl_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698