| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "chrome/browser/extensions/./extension_prefs_unittest.h" |
| 10 #include "chrome/browser/extensions/api/extension_action/extension_action_api.h" | 11 #include "chrome/browser/extensions/api/extension_action/extension_action_api.h" |
| 11 #include "chrome/browser/extensions/extension_prefs_unittest.h" | |
| 12 #include "extensions/common/extension.h" | 12 #include "extensions/common/extension.h" |
| 13 | 13 |
| 14 namespace extensions { | 14 namespace extensions { |
| 15 | 15 |
| 16 // Tests force hiding browser actions. | 16 // Tests force hiding browser actions. |
| 17 class ExtensionPrefsHidingBrowserActions : public ExtensionPrefsTest { | 17 class ExtensionPrefsHidingBrowserActions : public ExtensionPrefsTest { |
| 18 public: | 18 public: |
| 19 virtual void Initialize() OVERRIDE { | 19 virtual void Initialize() OVERRIDE { |
| 20 // Install 5 extensions. | 20 // Install 5 extensions. |
| 21 for (int i = 0; i < 5; i++) { | 21 for (int i = 0; i < 5; i++) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 50 } | 50 } |
| 51 } | 51 } |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 ExtensionList extensions_; | 54 ExtensionList extensions_; |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 TEST_F(ExtensionPrefsHidingBrowserActions, ForceHide) {} | 57 TEST_F(ExtensionPrefsHidingBrowserActions, ForceHide) {} |
| 58 | 58 |
| 59 } // namespace extensions | 59 } // namespace extensions |
| OLD | NEW |