Chromium Code Reviews| Index: extensions/renderer/console_apitest.cc |
| diff --git a/extensions/renderer/console_apitest.cc b/extensions/renderer/console_apitest.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2082963f72d79e2569c9064f32be815332be4b3a |
| --- /dev/null |
| +++ b/extensions/renderer/console_apitest.cc |
| @@ -0,0 +1,16 @@ |
| +// Copyright (c) 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. |
| + |
| +#include "chrome/browser/extensions/extension_apitest.h" |
| + |
| +namespace extensions { |
| +namespace { |
| + |
| +IN_PROC_BROWSER_TEST_F(ExtensionApiTest, UncaughtExceptionLogging) { |
| + ASSERT_TRUE(StartEmbeddedTestServer()); |
| + ASSERT_TRUE(RunExtensionTest("uncaught_exception_logging")) << message_; |
| +} |
| + |
| +} // anonymous namespace |
|
not at google - send to devlin
2014/11/11 00:50:25
just "namespace"
msimonides
2014/11/12 07:41:01
Done.
|
| +} // namespace extensions |