Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: chrome/browser/chromeos/extensions/input_method_apitest_chromeos.cc

Issue 18640003: Updates some includes of chrome_notification_types.h (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/extension_apitest.h" 5 #include "chrome/browser/extensions/extension_apitest.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/strings/stringprintf.h" 8 #include "base/strings/stringprintf.h"
9 #include "chrome/browser/chrome_notification_types.h"
9 #include "chrome/browser/chromeos/extensions/input_method_event_router.h" 10 #include "chrome/browser/chromeos/extensions/input_method_event_router.h"
10 #include "chrome/browser/extensions/api/test/test_api.h" 11 #include "chrome/browser/extensions/api/test/test_api.h"
11 #include "chrome/common/chrome_notification_types.h"
12 #include "chrome/common/chrome_switches.h" 12 #include "chrome/common/chrome_switches.h"
13 #include "chromeos/ime/input_method_manager.h" 13 #include "chromeos/ime/input_method_manager.h"
14 #include "content/public/browser/notification_observer.h" 14 #include "content/public/browser/notification_observer.h"
15 #include "content/public/browser/notification_registrar.h" 15 #include "content/public/browser/notification_registrar.h"
16 #include "content/public/browser/notification_service.h" 16 #include "content/public/browser/notification_service.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 18
19 namespace { 19 namespace {
20 20
21 const char kLoginScreenUILanguage[] = "ru"; 21 const char kLoginScreenUILanguage[] = "ru";
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 }; 74 };
75 75
76 } // namespace 76 } // namespace
77 77
78 IN_PROC_BROWSER_TEST_F(ExtensionInputMethodApiTest, Basic) { 78 IN_PROC_BROWSER_TEST_F(ExtensionInputMethodApiTest, Basic) {
79 // Two test, two calls. See JS code for more info. 79 // Two test, two calls. See JS code for more info.
80 SetInputMethodListener listener(2); 80 SetInputMethodListener listener(2);
81 81
82 ASSERT_TRUE(RunExtensionTest("input_method")) << message_; 82 ASSERT_TRUE(RunExtensionTest("input_method")) << message_;
83 } 83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698