Commit cddf3e88 authored by Varun Khaneja's avatar Varun Khaneja Committed by Commit Bot

Remove unseful calls to base::debug::StackTrace

Bug: 1104919,1114674,1114498,1114447
Change-Id: I3f795b4084d6c8346a6a9c0ead9719e84be88ad1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2347144
Commit-Queue: Varun Khaneja <vakh@chromium.org>
Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org>
Auto-Submit: Varun Khaneja <vakh@chromium.org>
Reviewed-by: default avatarJan Wilken Dörrie <jdoerrie@chromium.org>
Cr-Commit-Position: refs/heads/master@{#796541}
parent 0a27dff2
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
#include "base/bind.h" #include "base/bind.h"
#include "base/bind_helpers.h" #include "base/bind_helpers.h"
#include "base/command_line.h" #include "base/command_line.h"
#include "base/debug/stack_trace.h"
#include "base/memory/ptr_util.h" #include "base/memory/ptr_util.h"
#include "base/memory/ref_counted.h" #include "base/memory/ref_counted.h"
#include "base/memory/singleton.h" #include "base/memory/singleton.h"
...@@ -275,7 +274,6 @@ ChromePasswordManagerClient::~ChromePasswordManagerClient() { ...@@ -275,7 +274,6 @@ ChromePasswordManagerClient::~ChromePasswordManagerClient() {
VLOG(1) << "wc->GetRenderViewHost(): " VLOG(1) << "wc->GetRenderViewHost(): "
<< web_contents()->GetRenderViewHost(); << web_contents()->GetRenderViewHost();
} }
VLOG(1) << base::debug::StackTrace();
#endif #endif
} }
...@@ -1237,7 +1235,6 @@ void ChromePasswordManagerClient::DidFinishNavigation( ...@@ -1237,7 +1235,6 @@ void ChromePasswordManagerClient::DidFinishNavigation(
VLOG(1) << __FUNCTION__ << ": this: " << this; VLOG(1) << __FUNCTION__ << ": this: " << this;
VLOG(1) << "wc: " << web_contents(); VLOG(1) << "wc: " << web_contents();
VLOG(1) << "wc->GetRenderViewHost(): " << web_contents()->GetRenderViewHost(); VLOG(1) << "wc->GetRenderViewHost(): " << web_contents()->GetRenderViewHost();
VLOG(1) << base::debug::StackTrace();
#endif #endif
AddToWidgetInputEventObservers( AddToWidgetInputEventObservers(
web_contents()->GetRenderViewHost()->GetWidget(), this); web_contents()->GetRenderViewHost()->GetWidget(), this);
...@@ -1268,7 +1265,6 @@ void ChromePasswordManagerClient::WebContentsDestroyed() { ...@@ -1268,7 +1265,6 @@ void ChromePasswordManagerClient::WebContentsDestroyed() {
VLOG(1) << __FUNCTION__ << ": this: " << this; VLOG(1) << __FUNCTION__ << ": this: " << this;
VLOG(1) << "wc: " << web_contents(); VLOG(1) << "wc: " << web_contents();
VLOG(1) << "wc->GetRenderViewHost(): " << web_contents()->GetRenderViewHost(); VLOG(1) << "wc->GetRenderViewHost(): " << web_contents()->GetRenderViewHost();
VLOG(1) << base::debug::StackTrace();
#endif #endif
RemoveFromWidgetInputEventObservers( RemoveFromWidgetInputEventObservers(
web_contents()->GetRenderViewHost()->GetWidget(), this); web_contents()->GetRenderViewHost()->GetWidget(), this);
...@@ -1281,7 +1277,6 @@ void ChromePasswordManagerClient::OnPaste() { ...@@ -1281,7 +1277,6 @@ void ChromePasswordManagerClient::OnPaste() {
VLOG(1) << __FUNCTION__ << ": this: " << this; VLOG(1) << __FUNCTION__ << ": this: " << this;
VLOG(1) << "wc: " << web_contents(); VLOG(1) << "wc: " << web_contents();
VLOG(1) << "wc->GetRenderViewHost(): " << web_contents()->GetRenderViewHost(); VLOG(1) << "wc->GetRenderViewHost(): " << web_contents()->GetRenderViewHost();
VLOG(1) << base::debug::StackTrace();
#endif #endif
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread(); ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
...@@ -1300,7 +1295,6 @@ void ChromePasswordManagerClient::RenderFrameCreated( ...@@ -1300,7 +1295,6 @@ void ChromePasswordManagerClient::RenderFrameCreated(
VLOG(1) << __FUNCTION__ << ": this: " << this; VLOG(1) << __FUNCTION__ << ": this: " << this;
VLOG(1) << "rfh: " << render_frame_host; VLOG(1) << "rfh: " << render_frame_host;
VLOG(1) << "rfh->GetView(): " << render_frame_host->GetView(); VLOG(1) << "rfh->GetView(): " << render_frame_host->GetView();
VLOG(1) << base::debug::StackTrace();
#endif #endif
// TODO(drubery): We should handle input events on subframes separately, so // TODO(drubery): We should handle input events on subframes separately, so
...@@ -1318,7 +1312,6 @@ void ChromePasswordManagerClient::RenderFrameDeleted( ...@@ -1318,7 +1312,6 @@ void ChromePasswordManagerClient::RenderFrameDeleted(
VLOG(1) << __FUNCTION__ << ": this: " << this; VLOG(1) << __FUNCTION__ << ": this: " << this;
VLOG(1) << "rfh: " << render_frame_host; VLOG(1) << "rfh: " << render_frame_host;
VLOG(1) << "rfh->GetView(): " << render_frame_host->GetView(); VLOG(1) << "rfh->GetView(): " << render_frame_host->GetView();
VLOG(1) << base::debug::StackTrace();
#endif #endif
if (!render_frame_host->GetView()) if (!render_frame_host->GetView())
......
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