Commit dfb0e35f authored by nona@chromium.org's avatar nona@chromium.org

Fix typo /Initilaize/Initialize/

BUG=None
TEST=None
TBR=sky


Review URL: https://chromiumcodereview.appspot.com/11183026

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162357 0039d316-1c4b-4281-b951-d872f2087c98
parent abc53e66
......@@ -56,7 +56,7 @@ AshTestBase::~AshTestBase() {
void AshTestBase::SetUp() {
// Disable animations during tests.
ui::LayerAnimator::set_disable_animations_for_test(true);
ui::TextInputTestSupport::Initilaize();
ui::TextInputTestSupport::Initialize();
// Creates Shell and hook with Desktop.
TestShellDelegate* delegate = new TestShellDelegate;
ash::Shell::CreateInstance(delegate);
......
......@@ -83,7 +83,7 @@ void ViewEventTestBase::Done() {
}
void ViewEventTestBase::SetUp() {
ui::TextInputTestSupport::Initilaize();
ui::TextInputTestSupport::Initialize();
ui::CompositorTestSupport::Initialize();
#if defined(USE_ASH)
ash::Shell::CreateInstance(NULL);
......
......@@ -19,7 +19,7 @@ AuraTestBase::~AuraTestBase() {
void AuraTestBase::SetUp() {
testing::Test::SetUp();
ui::TextInputTestSupport::Initilaize();
ui::TextInputTestSupport::Initialize();
// Changing the parameters for gesture recognition shouldn't cause
// tests to fail, so we use a separate set of parameters for unit
......
......@@ -16,7 +16,7 @@ TextInputTestSupport::TextInputTestSupport() {
TextInputTestSupport::~TextInputTestSupport() {
}
void TextInputTestSupport::Initilaize() {
void TextInputTestSupport::Initialize() {
#if defined(OS_CHROMEOS)
chromeos::DBusThreadManager::InitializeWithStub();
#endif // OS_CHROMEOS
......
......@@ -15,7 +15,7 @@ class TextInputTestSupport {
virtual ~TextInputTestSupport();
// Initialize DBusThreadManager for text input testing.
static void Initilaize();
static void Initialize();
// Shutdown DBusThreadManager.
static void Shutdown();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment