Commit 32cd8a5f authored by Nicolas Ouellet-Payeur's avatar Nicolas Ouellet-Payeur Committed by Commit Bot

[BrowserSwitcher] Fix use_mini_bho compilation

The initial use_mini_bho CL [1] fails to compile due to an untested
function rename.

[1] https://crrev.com/c/1699279

TBR=pastarmovj@chromium.org

Bug: 950039
Change-Id: Ibc34b3d374965fc95b66a5d146299adfb67e7adb
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1792852Reviewed-by: default avatarNicolas Ouellet-Payeur <nicolaso@chromium.org>
Commit-Queue: Nicolas Ouellet-Payeur <nicolaso@chromium.org>
Cr-Commit-Position: refs/heads/master@{#694818}
parent bd177d01
......@@ -351,7 +351,7 @@ class BrowserSwitcherCore {
}
// Like GetNextLine(char*), but gets the next line instead of the first one.
char* GetNextLine() { return GetNextLine(nullptr); }
char* GetNextLine() { return GetFirstLine(nullptr); }
// Read a line that contains a number, and then read that number of lines into
// a vector (one element for each line).
......
......@@ -18,7 +18,7 @@ enum LogLevel {
// ones in libc (mostly from string.h).
namespace util {
constexpr LogLevel kLogLevel = DEBUG;
constexpr LogLevel kLogLevel = INFO;
extern const char* kLogPrefixes[];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment