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

Side by Side Diff: chrome/common/extensions/extension_unittest.h

Issue 14694010: Consolidate manifest handler registration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_UNITTEST_H_
6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_UNITTEST_H_
7
8 #include "base/compiler_specific.h"
9 #include "chrome/common/extensions/permissions/scoped_testing_permissions_info.h "
10 #include "testing/gtest/include/gtest/gtest.h"
11
12 namespace extensions {
13
14 // A base class for extension unit tests that sets up permissions and
15 // universally useful manifest handlers.
16 class ExtensionTest : public testing::Test {
17 public:
18 ExtensionTest();
19
20 protected:
21 virtual void SetUp() OVERRIDE;
22
23 virtual void TearDown() OVERRIDE;
24
25 ScopedTestingPermissionsInfo permissions_info_;
26 };
27
28 } // namespace extensions
29
30 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_UNITTEST_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_sync_type_unittest.cc ('k') | chrome/common/extensions/extension_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698