diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-10 23:59:21 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-10 23:59:21 +0000 |
commit | 060ebc531f10114cf3d41b349c473f8ccdf95bb2 (patch) | |
tree | 1588fb5cfe3871071eedbc0d7e5768cad46f4a57 /cc/test | |
parent | f7b7f6c479dd202280aab41630eb94c6c0de4c3d (diff) | |
download | chromium_src-060ebc531f10114cf3d41b349c473f8ccdf95bb2.zip chromium_src-060ebc531f10114cf3d41b349c473f8ccdf95bb2.tar.gz chromium_src-060ebc531f10114cf3d41b349c473f8ccdf95bb2.tar.bz2 |
cc: Remove the remaining using-directives of namespace cc.
Fixed the entries found by the following command lines:
$ git grep -n "using namespace cc" cc/
$ cpplint.py cc/test/* 2>&1 | grep using
BUG=144576,144577
TEST=cc_unittests
TBR=enne@chromium.org,jamesr@chromium.org
Review URL: https://chromiumcodereview.appspot.com/11312181
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test')
-rw-r--r-- | cc/test/animation_test_common.cc | 9 | ||||
-rw-r--r-- | cc/test/layer_tree_test_common.cc | 9 | ||||
-rw-r--r-- | cc/test/tiled_layer_test_common.cc | 9 |
3 files changed, 24 insertions, 3 deletions
diff --git a/cc/test/animation_test_common.cc b/cc/test/animation_test_common.cc index f728818..1ee736f 100644 --- a/cc/test/animation_test_common.cc +++ b/cc/test/animation_test_common.cc @@ -10,7 +10,14 @@ #include "cc/layer_impl.h" #include <public/WebTransformOperations.h> -using namespace cc; +using cc::ActiveAnimation; +using cc::AnimationCurve; +using cc::EaseTimingFunction; +using cc::FloatKeyframe; +using cc::KeyframedFloatAnimationCurve; +using cc::KeyframedTransformAnimationCurve; +using cc::TimingFunction; +using cc::TransformKeyframe; namespace { diff --git a/cc/test/layer_tree_test_common.cc b/cc/test/layer_tree_test_common.cc index 3fe084f..1c26647 100644 --- a/cc/test/layer_tree_test_common.cc +++ b/cc/test/layer_tree_test_common.cc @@ -27,7 +27,14 @@ #include <public/WebFilterOperation.h> #include <public/WebFilterOperations.h> -using namespace cc; +using cc::InputHandler; +using cc::Layer; +using cc::LayerTreeHostImplClient; +using cc::LayerTreeSettings; +using cc::Proxy; +using cc::ScopedThreadProxy; +using cc::Settings; + using namespace WebKit; namespace WebKitTests { diff --git a/cc/test/tiled_layer_test_common.cc b/cc/test/tiled_layer_test_common.cc index f8db177..4336eac 100644 --- a/cc/test/tiled_layer_test_common.cc +++ b/cc/test/tiled_layer_test_common.cc @@ -4,7 +4,14 @@ #include "cc/test/tiled_layer_test_common.h" -using namespace cc; +using cc::LayerTilingData; +using cc::LayerUpdater; +using cc::PriorityCalculator; +using cc::PrioritizedResource; +using cc::PrioritizedResourceManager; +using cc::RenderingStats; +using cc::ResourceUpdate; +using cc::ResourceUpdateQueue; namespace WebKitTests { |