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

Side by Side Diff: chrome/browser/extensions/api/system_indicator/system_indicator_apitest.cc

Issue 147923005: Split ExtensionSystem interface from ExtensionSystemImpl implementation, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re^3base Created 6 years, 10 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/api/system_indicator/system_indicator_manage r.h" 5 #include "chrome/browser/extensions/api/system_indicator/system_indicator_manage r.h"
6 #include "chrome/browser/extensions/api/system_indicator/system_indicator_manage r_factory.h" 6 #include "chrome/browser/extensions/api/system_indicator/system_indicator_manage r_factory.h"
7 #include "chrome/browser/extensions/extension_action.h" 7 #include "chrome/browser/extensions/extension_action.h"
8 #include "chrome/browser/extensions/extension_action_manager.h" 8 #include "chrome/browser/extensions/extension_action_manager.h"
9 #include "chrome/browser/extensions/extension_apitest.h" 9 #include "chrome/browser/extensions/extension_apitest.h"
10 #include "chrome/browser/extensions/extension_system.h"
11 #include "chrome/browser/extensions/lazy_background_page_test_util.h" 10 #include "chrome/browser/extensions/lazy_background_page_test_util.h"
12 #include "chrome/browser/ui/browser.h" 11 #include "chrome/browser/ui/browser.h"
12 #include "extensions/browser/extension_system.h"
13 #include "extensions/browser/process_manager.h" 13 #include "extensions/browser/process_manager.h"
14 #include "extensions/common/extension.h" 14 #include "extensions/common/extension.h"
15 #include "extensions/common/switches.h" 15 #include "extensions/common/switches.h"
16 16
17 class SystemIndicatorApiTest : public ExtensionApiTest { 17 class SystemIndicatorApiTest : public ExtensionApiTest {
18 public: 18 public:
19 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 19 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
20 ExtensionApiTest::SetUpCommandLine(command_line); 20 ExtensionApiTest::SetUpCommandLine(command_line);
21 // Set shorter delays to prevent test timeouts in tests that need to wait 21 // Set shorter delays to prevent test timeouts in tests that need to wait
22 // for the event page to unload. 22 // for the event page to unload.
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 // Lazy Background Page has been shut down. 62 // Lazy Background Page has been shut down.
63 extensions::ProcessManager* pm = 63 extensions::ProcessManager* pm =
64 extensions::ExtensionSystem::Get(profile())->process_manager(); 64 extensions::ExtensionSystem::Get(profile())->process_manager();
65 EXPECT_FALSE(pm->GetBackgroundHostForExtension(last_loaded_extension_id())); 65 EXPECT_FALSE(pm->GetBackgroundHostForExtension(last_loaded_extension_id()));
66 66
67 EXPECT_TRUE(manager->SendClickEventToExtensionForTest(extension->id())); 67 EXPECT_TRUE(manager->SendClickEventToExtensionForTest(extension->id()));
68 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); 68 EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
69 } 69 }
70 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698