From 9c88e5615608f133483adb6c5c1ba5e170290d6b Mon Sep 17 00:00:00 2001 From: "enne@chromium.org" Date: Fri, 14 Sep 2012 22:21:30 +0000 Subject: Change cc files from namespace WebCore to cc These files no longer are part of WebCore, so it doesn't make any sense to keep that namespace. Due to being unable to forward declare typedefs in C++, the stubs files (like FloatSize) now define cc::FloatSize as being derived from WebCore::FloatSize. With enough constructors, this lets them be used interchangably in the short term until those geometry classes become real and not dependent on WebCore files. This allows (nearly) all the forward declarations and uses of these types in cc stay as-is with minimal churn. BUG=none Review URL: https://codereview.chromium.org/10914268 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156905 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/CCSchedulerStateMachineTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cc/CCSchedulerStateMachineTest.cpp') diff --git a/cc/CCSchedulerStateMachineTest.cpp b/cc/CCSchedulerStateMachineTest.cpp index d379869..86238bc 100644 --- a/cc/CCSchedulerStateMachineTest.cpp +++ b/cc/CCSchedulerStateMachineTest.cpp @@ -8,8 +8,8 @@ #include +using namespace cc; using namespace WTF; -using namespace WebCore; namespace { -- cgit v1.1