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

Unified Diff: chrome/browser/chromeos/process_proxy/process_proxy.cc

Issue 8915024: Retry 114494 - Remove BindStateHolder and have Bind() return a Callback<> object directly." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/process_proxy/process_proxy.cc
diff --git a/chrome/browser/chromeos/process_proxy/process_proxy.cc b/chrome/browser/chromeos/process_proxy/process_proxy.cc
index 288c3f616c335b5532375157ede80ef71fc209d8..9696519ee339ab492f59732a4c868bbf37d7889f 100644
--- a/chrome/browser/chromeos/process_proxy/process_proxy.cc
+++ b/chrome/browser/chromeos/process_proxy/process_proxy.cc
@@ -96,7 +96,7 @@ bool ProcessProxy::StartWatchingOnThread(base::Thread* watch_thread,
}
void ProcessProxy::OnProcessOutput(ProcessOutputType type,
- const std::string& output) {
+ const std::string& output) {
// We have to check if callback is set on FILE thread..
if (!content::BrowserThread::CurrentlyOn(content::BrowserThread::FILE)) {
content::BrowserThread::PostTask(content::BrowserThread::FILE, FROM_HERE,

Powered by Google App Engine
This is Rietveld 408576698