Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: ui/gfx/screen_aura.cc

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698