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

Unified Diff: chrome_elf/chrome_elf_util.h

Issue 1904613002: Preparation patch for moving the chrome crashpad integration into chrome_elf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error on Windows builder 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_elf/chrome_elf_main.cc ('k') | chrome_elf/chrome_elf_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_elf/chrome_elf_util.h
diff --git a/chrome_elf/chrome_elf_util.h b/chrome_elf/chrome_elf_util.h
deleted file mode 100644
index 673943d65139fb0fba627c046e5745f135c235ae..0000000000000000000000000000000000000000
--- a/chrome_elf/chrome_elf_util.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_ELF_CHROME_ELF_UTIL_H_
-#define CHROME_ELF_CHROME_ELF_UTIL_H_
-
-#include "base/strings/string16.h"
-
-enum class ProcessType {
- UNINITIALIZED,
- NON_BROWSER_PROCESS,
- BROWSER_PROCESS,
-};
-
-// Returns true if |exe_path| points to a Chrome installed in an SxS
-// installation.
-bool IsCanary(const wchar_t* exe_path);
-
-// Returns true if |exe_path| points to a per-user level Chrome installation.
-bool IsSystemInstall(const wchar_t* exe_path);
-
-// Returns true if current installation of Chrome is a multi-install.
-bool IsMultiInstall(bool is_system_install);
-
-// Returns true if usage stats collecting is enabled for this user.
-bool AreUsageStatsEnabled(const wchar_t* exe_path);
-
-// Returns true if a policy is in effect. |breakpad_enabled| will be set to true
-// if stats collecting is permitted by this policy and false if not.
-bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled);
-
-// Initializes |g_process_type| which stores whether or not the current process
-// is the main browser process.
-void InitializeProcessType();
-
-// Returns true if invoked in a Chrome process other than the main browser
-// process. False otherwise.
-bool IsNonBrowserProcess();
-
-// Caches the |ProcessType| of the current process.
-extern ProcessType g_process_type;
-
-#endif // CHROME_ELF_CHROME_ELF_UTIL_H_
« no previous file with comments | « chrome_elf/chrome_elf_main.cc ('k') | chrome_elf/chrome_elf_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698