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

Unified Diff: athena/main/debug/debug_window.cc

Issue 411543006: Explicit container priority (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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: athena/main/debug/debug_window.cc
diff --git a/athena/main/debug/debug_window.cc b/athena/main/debug/debug_window.cc
index e49541856aa8a03e6f987c344f813a0e198ed2a9..abd3517be104c1c814789e27b425c0d348c0d9cc 100644
--- a/athena/main/debug/debug_window.cc
+++ b/athena/main/debug/debug_window.cc
@@ -4,6 +4,7 @@
#include "athena/main/debug/debug_window.h"
+#include "athena/common/container_priorities.h"
#include "athena/resources/athena_resources.h"
#include "athena/screen/public/screen_manager.h"
#include "base/bind.h"
@@ -168,7 +169,8 @@ class DebugWidget {
private:
void CreateContainer() {
- athena::ScreenManager::ContainerParams params("DebugContainer");
+ athena::ScreenManager::ContainerParams params("DebugContainer",
+ athena::CP_DEBUG);
container_ = athena::ScreenManager::Get()->CreateContainer(params);
}

Powered by Google App Engine
This is Rietveld 408576698