Modernize to C++11: NULL => nullptr.

No functional change.
This commit is contained in:
Haojian Wu 2016-07-10 11:52:28 +02:00
parent 9c74ea4bf4
commit fab02809c6
29 changed files with 82 additions and 82 deletions

View file

@ -7,7 +7,7 @@
#include "chrome/browser/printing/print_job_manager.h"
#include "ui/base/l10n/l10n_util.h"
BrowserProcess* g_browser_process = NULL;
BrowserProcess* g_browser_process = nullptr;
BrowserProcess::BrowserProcess() {
g_browser_process = this;
@ -16,7 +16,7 @@ BrowserProcess::BrowserProcess() {
}
BrowserProcess::~BrowserProcess() {
g_browser_process = NULL;
g_browser_process = nullptr;
}
std::string BrowserProcess::GetApplicationLocale() {