diff options
Diffstat (limited to 'chrome/common/chrome_content_client.cc')
-rw-r--r-- | chrome/common/chrome_content_client.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc index 1eb9c10..46f4069 100644 --- a/chrome/common/chrome_content_client.cc +++ b/chrome/common/chrome_content_client.cc @@ -6,6 +6,7 @@ #include "base/command_line.h" #include "base/cpu.h" +#include "base/debug/crash_logging.h" #include "base/file_util.h" #include "base/path_service.h" #include "base/strings/string_number_conversions.h" @@ -18,6 +19,7 @@ #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/chrome_version_info.h" +#include "chrome/common/crash_keys.h" #include "chrome/common/pepper_flash.h" #include "chrome/common/render_messages.h" #include "chrome/common/url_constants.h" @@ -385,7 +387,8 @@ bool GetBundledPepperFlash(content::PepperPluginInfo* plugin) { namespace chrome { void ChromeContentClient::SetActiveURL(const GURL& url) { - child_process_logging::SetActiveURL(url); + base::debug::SetCrashKeyValue(crash_keys::kActiveURL, + url.possibly_invalid_spec()); } void ChromeContentClient::SetGpuInfo(const gpu::GPUInfo& gpu_info) { |