diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-27 19:14:38 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-27 19:14:38 +0000 |
commit | 993d6b32443cada86407e252087d72823abdda54 (patch) | |
tree | b6da59774b30b94dabd34886866cfb50b2c0eb5e /ui/aura_shell | |
parent | 200210f5b91d642c424112cca35a5201143eaafd (diff) | |
download | chromium_src-993d6b32443cada86407e252087d72823abdda54.zip chromium_src-993d6b32443cada86407e252087d72823abdda54.tar.gz chromium_src-993d6b32443cada86407e252087d72823abdda54.tar.bz2 |
Allow layers to be created without a compositor, creating this association when they are associated with a root layer/added to a hierarchy parented to a root layer.This allows us to configure a layer associated with a view before the view is attached to a widget.BUG=noneTEST=unittests
Review URL: http://codereview.chromium.org/8036026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102989 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura_shell')
-rw-r--r-- | ui/aura_shell/aura_shell.gyp | 1 | ||||
-rw-r--r-- | ui/aura_shell/run_all_unittests.cc | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ui/aura_shell/aura_shell.gyp b/ui/aura_shell/aura_shell.gyp index 7206f20..321e319 100644 --- a/ui/aura_shell/aura_shell.gyp +++ b/ui/aura_shell/aura_shell.gyp @@ -64,6 +64,7 @@ 'aura_shell', ], 'sources': [ + 'run_all_unittests.cc', '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', diff --git a/ui/aura_shell/run_all_unittests.cc b/ui/aura_shell/run_all_unittests.cc new file mode 100644 index 0000000..b23ca59a --- /dev/null +++ b/ui/aura_shell/run_all_unittests.cc @@ -0,0 +1,6 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +int main(int argc, char** argv) { +} |