Index: ui/gfx/screen_aura.cc |
diff --git a/ui/gfx/screen_aura.cc b/ui/gfx/screen_aura.cc |
index 7a1effa0e8cef6d6c2446727089443ea77689768..21eac7c9a0ca229f4ec278445b6953cefc75292e 100644 |
--- a/ui/gfx/screen_aura.cc |
+++ b/ui/gfx/screen_aura.cc |
@@ -5,10 +5,14 @@ |
#include "ui/gfx/screen.h" |
#include "base/logging.h" |
+#include "base/debug/stack_trace.h" |
namespace gfx { |
Screen* CreateNativeScreen() { |
+ base::debug::StackTrace st; |
+ LOG(ERROR) << "CreateNativeScreen()"; |
+ LOG(ERROR) << st.ToString(); |
NOTREACHED() << "Implementation should be installed at higher level."; |
return NULL; |
} |