| Index: extensions/renderer/user_script_set.cc
|
| diff --git a/extensions/renderer/user_script_set.cc b/extensions/renderer/user_script_set.cc
|
| index 92608bd962a862680f120b8624928e5f7983138f..5444761ebfb2a52e3cac4ec68c2baf13209a4f82 100644
|
| --- a/extensions/renderer/user_script_set.cc
|
| +++ b/extensions/renderer/user_script_set.cc
|
| @@ -122,14 +122,14 @@ bool UserScriptSet::UpdateUserScripts(
|
| // cleared up when the last renderer or browser process drops their
|
| // reference to the shared memory.
|
| for (size_t j = 0; j < script->js_scripts().size(); ++j) {
|
| - const char* body = NULL;
|
| + const char* body = nullptr;
|
| int body_length = 0;
|
| CHECK(pickle.ReadData(&iter, &body, &body_length));
|
| script->js_scripts()[j].set_external_content(
|
| base::StringPiece(body, body_length));
|
| }
|
| for (size_t j = 0; j < script->css_scripts().size(); ++j) {
|
| - const char* body = NULL;
|
| + const char* body = nullptr;
|
| int body_length = 0;
|
| CHECK(pickle.ReadData(&iter, &body, &body_length));
|
| script->css_scripts()[j].set_external_content(
|
|
|