Chromium Code Reviews| Index: extensions/common/extensions_test_browser_context.h |
| diff --git a/extensions/common/extensions_test_browser_context.h b/extensions/common/extensions_test_browser_context.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9ae4a06f4c05aab7fad2b463b3217706619d6582 |
| --- /dev/null |
| +++ b/extensions/common/extensions_test_browser_context.h |
| @@ -0,0 +1,20 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef EXTENSIONS_COMMON_EXTENSIONS_TEST_BROWSER_CONTEXT_H_ |
| +#define EXTENSIONS_COMMON_EXTENSIONS_TEST_BROWSER_CONTEXT_H_ |
| + |
| +#include "content/public/test/test_browser_context.h" |
| + |
| +namespace extensions { |
| + |
| +class ExtensionsTestBrowserContext : public content::TestBrowserContext { |
|
Devlin
2014/07/15 17:30:39
Document the class; in particular, what is differe
limasdf
2014/07/16 16:10:19
Done.
Hopefully, no grammertical mistake!
|
| + public: |
| + ExtensionsTestBrowserContext(); |
| + virtual ~ExtensionsTestBrowserContext(); |
| +}; |
| + |
| +} // namespace extensions |
| + |
| +#endif // EXTENSIONS_COMMON_EXTENSIONS_TEST_BROWSER_CONTEXT_H_ |