diff options
Diffstat (limited to 'chrome/browser/extensions/extension_input_method_apitest.cc')
-rw-r--r-- | chrome/browser/extensions/extension_input_method_apitest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_input_method_apitest.cc b/chrome/browser/extensions/extension_input_method_apitest.cc index b04d820..a019386 100644 --- a/chrome/browser/extensions/extension_input_method_apitest.cc +++ b/chrome/browser/extensions/extension_input_method_apitest.cc @@ -11,7 +11,7 @@ #include "chrome/common/chrome_notification_types.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" -#include "content/common/notification_service.h" +#include "content/public/browser/notification_service.h" #include "testing/gtest/include/gtest/gtest.h" namespace { @@ -27,7 +27,7 @@ class SetInputMethodListener : public content::NotificationObserver { // Creates listener, which should reply exactly |count_| times. explicit SetInputMethodListener(int count) : count_(count) { registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_TEST_MESSAGE, - NotificationService::AllSources()); + content::NotificationService::AllSources()); } virtual ~SetInputMethodListener() { |