summaryrefslogtreecommitdiffstats
path: root/ui/oak
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-23 19:30:27 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-23 19:30:27 +0000
commit262f8bd0d00cd8dd9aa679338467d3104cc0d44c (patch)
tree9e65804202ea972658ada1e86d3c6f5fa508cf7c /ui/oak
parent7de00b2456fe566ed86da0543dceda3204110148 (diff)
downloadchromium_src-262f8bd0d00cd8dd9aa679338467d3104cc0d44c.zip
chromium_src-262f8bd0d00cd8dd9aa679338467d3104cc0d44c.tar.gz
chromium_src-262f8bd0d00cd8dd9aa679338467d3104cc0d44c.tar.bz2
Remove stops_event_propagation from Window, since it's broken.
Changes it to be implemented by the Aura client, via a new interface EventClient. The client can determine whether or not a given window and its subtree can receive events. I also cleaned up the way screen locking is entered/exited via the delegate, and some stuff in ash/shell. http://crbug.com/119347 TEST=none Review URL: https://chromiumcodereview.appspot.com/9788001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@128553 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/oak')
-rw-r--r--ui/oak/oak_aura_window_display.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/oak/oak_aura_window_display.cc b/ui/oak/oak_aura_window_display.cc
index 214a005..fce9406 100644
--- a/ui/oak/oak_aura_window_display.cc
+++ b/ui/oak/oak_aura_window_display.cc
@@ -32,7 +32,6 @@ ROW_ROOTWINDOW,
ROW_TRANSIENTCHILDREN,
ROW_TRANSIENTPARENT,
ROW_USERDATA,
-ROW_STOPSEVENTPROPAGATION,
ROW_IGNOREEVENTS,
ROW_CANFOCUS,
ROW_HITTESTBOUNDSOVERRIDE,
@@ -137,9 +136,6 @@ string16 OakAuraWindowDisplay::GetText(int row, int column_id) {
window_->transient_parent());
case ROW_USERDATA:
return PropertyWithVoidStar("User Data: ", window_->user_data());
- case ROW_STOPSEVENTPROPAGATION:
- return PropertyWithBool("Stops event propagation: ",
- window_->StopsEventPropagation());
case ROW_IGNOREEVENTS:
return PropertyWithBool("Can receive events: ",
window_->CanReceiveEvents());