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

Side by Side Diff: chrome/browser/extensions/api/extension_action/extension_action_prefs_unittest.cc

Issue 46853004: Move ExtensionPrefs and friends to extensions/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync and update app_shell Created 6 years, 11 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) 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698