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

Unified Diff: content/browser/utility_process_host_impl.h

Issue 9429039: Cleanup: Remove base::environment_vector and base::file_handle_mapping_vector to StudlyCaps. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/utility_process_host_impl.h
===================================================================
--- content/browser/utility_process_host_impl.h (revision 123165)
+++ content/browser/utility_process_host_impl.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_UTILITY_PROCESS_HOST_H_
-#define CONTENT_BROWSER_UTILITY_PROCESS_HOST_H_
+#ifndef CONTENT_BROWSER_UTILITY_PROCESS_HOST_IMPL_H_
+#define CONTENT_BROWSER_UTILITY_PROCESS_HOST_IMPL_H_
#pragma once
#include <string>
@@ -34,7 +34,7 @@
virtual void DisableSandbox() OVERRIDE;
virtual void EnableZygote() OVERRIDE;
#if defined(OS_POSIX)
- virtual void SetEnv(const base::environment_vector& env) OVERRIDE;
+ virtual void SetEnv(const base::EnvironmentVector& env) OVERRIDE;
#endif
void set_child_flags(int flags) { child_flags_ = flags; }
@@ -66,7 +66,7 @@
// Launch the utility process from the zygote. Defaults to false.
bool use_linux_zygote_;
- base::environment_vector env_;
+ base::EnvironmentVector env_;
bool started_;
@@ -75,4 +75,4 @@
DISALLOW_COPY_AND_ASSIGN(UtilityProcessHostImpl);
};
-#endif // CONTENT_BROWSER_UTILITY_PROCESS_HOST_H_
+#endif // CONTENT_BROWSER_UTILITY_PROCESS_HOST_IMPL_H_
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698