OLD | NEW |
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 <vector> | 5 #include <vector> |
6 | 6 |
7 #include "base/json/json_reader.h" | 7 #include "base/json/json_reader.h" |
8 #include "base/memory/scoped_vector.h" | 8 #include "base/memory/scoped_vector.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "base/scoped_temp_dir.h" | 11 #include "base/scoped_temp_dir.h" |
12 #include "base/utf_string_conversions.h" | 12 #include "base/utf_string_conversions.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "chrome/browser/extensions/extension_event_names.h" | 14 #include "chrome/browser/extensions/extension_event_names.h" |
15 #include "chrome/browser/extensions/extension_event_router.h" | 15 #include "chrome/browser/extensions/extension_event_router.h" |
16 #include "chrome/browser/extensions/extension_menu_manager.h" | 16 #include "chrome/browser/extensions/extension_menu_manager.h" |
17 #include "chrome/browser/extensions/test_extension_prefs.h" | 17 #include "chrome/browser/extensions/test_extension_prefs.h" |
18 #include "chrome/common/chrome_notification_types.h" | 18 #include "chrome/common/chrome_notification_types.h" |
19 #include "chrome/common/chrome_paths.h" | 19 #include "chrome/common/chrome_paths.h" |
20 #include "chrome/common/extensions/extension.h" | 20 #include "chrome/common/extensions/extension.h" |
21 #include "chrome/common/extensions/extension_constants.h" | 21 #include "chrome/common/extensions/extension_constants.h" |
22 #include "chrome/test/base/testing_profile.h" | 22 #include "chrome/test/base/testing_profile.h" |
23 #include "content/public/browser/notification_service.h" | 23 #include "content/public/browser/notification_service.h" |
24 #include "content/public/common/context_menu_params.h" | 24 #include "content/public/common/context_menu_params.h" |
25 #include "content/test/test_browser_thread.h" | 25 #include "content/public/test/test_browser_thread.h" |
26 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
27 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
28 | 28 |
29 using content::BrowserThread; | 29 using content::BrowserThread; |
30 using extensions::Extension; | 30 using extensions::Extension; |
31 using testing::_; | 31 using testing::_; |
32 using testing::AtLeast; | 32 using testing::AtLeast; |
33 using testing::InSequence; | 33 using testing::InSequence; |
34 using testing::Return; | 34 using testing::Return; |
35 using testing::SaveArg; | 35 using testing::SaveArg; |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 manager_.ChangeParent(child1->id(), NULL); | 620 manager_.ChangeParent(child1->id(), NULL); |
621 ASSERT_TRUE(new_item->checked()); | 621 ASSERT_TRUE(new_item->checked()); |
622 ASSERT_TRUE(child1->checked()); | 622 ASSERT_TRUE(child1->checked()); |
623 | 623 |
624 // Removing |parent| should cause only |child1| to be selected. | 624 // Removing |parent| should cause only |child1| to be selected. |
625 manager_.RemoveContextMenuItem(parent->id()); | 625 manager_.RemoveContextMenuItem(parent->id()); |
626 parent = NULL; | 626 parent = NULL; |
627 ASSERT_FALSE(new_item->checked()); | 627 ASSERT_FALSE(new_item->checked()); |
628 ASSERT_TRUE(child1->checked()); | 628 ASSERT_TRUE(child1->checked()); |
629 } | 629 } |
OLD | NEW |