summaryrefslogtreecommitdiffstats
path: root/chrome/common/child_process_logging_mac.mm
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/child_process_logging_mac.mm')
-rw-r--r--chrome/common/child_process_logging_mac.mm12
1 files changed, 0 insertions, 12 deletions
diff --git a/chrome/common/child_process_logging_mac.mm b/chrome/common/child_process_logging_mac.mm
index eac57dc..2e1abd2 100644
--- a/chrome/common/child_process_logging_mac.mm
+++ b/chrome/common/child_process_logging_mac.mm
@@ -7,7 +7,6 @@
#import <Foundation/Foundation.h>
#include "base/command_line.h"
-#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
@@ -24,7 +23,6 @@ using base::debug::SetCrashKeyValue;
using base::debug::ClearCrashKey;
const char* kGuidParamName = "guid";
-const char* kNumberOfViews = "num-views";
const char* kPrinterInfoNameFormat = "prn-info-%zu";
// Account for the terminating null character.
@@ -65,16 +63,6 @@ void SetPrinterInfo(const char* printer_info) {
}
}
-void SetNumberOfViewsImpl(int number_of_views,
- SetCrashKeyValueFuncT set_key_func) {
- std::string value = base::IntToString(number_of_views);
- set_key_func(kNumberOfViews, value);
-}
-
-void SetNumberOfViews(int number_of_views) {
- SetNumberOfViewsImpl(number_of_views, SetCrashKeyValue);
-}
-
void SetCommandLine(const CommandLine* command_line) {
DCHECK(command_line);
if (!command_line)