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

Unified Diff: chrome/common/extensions/command_unittest.cc

Issue 10387224: Rename ExtensionCommand* to Command* within the extension namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/command.cc ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/command_unittest.cc
===================================================================
--- chrome/common/extensions/command_unittest.cc (revision 138124)
+++ chrome/common/extensions/command_unittest.cc (working copy)
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/common/extensions/extension_commands.h"
+#include "chrome/common/extensions/command.h"
#include "base/memory/scoped_ptr.h"
#include "base/string_number_conversions.h"
@@ -11,10 +11,10 @@
#include "base/values.h"
#include "testing/gtest/include/gtest/gtest.h"
-class ExtensionCommandsTest : public testing::Test {
+class CommandTest : public testing::Test {
};
-TEST(ExtensionCommandsTest, ExtensionCommandParsing) {
+TEST(CommandTest, ExtensionCommandParsing) {
const ui::Accelerator none = ui::Accelerator();
const ui::Accelerator shift_f = ui::Accelerator(ui::VKEY_F,
ui::EF_SHIFT_DOWN);
@@ -116,7 +116,7 @@
}
}
-TEST(ExtensionCommandsTest, ExtensionCommandParsingFallback) {
+TEST(CommandTest, ExtensionCommandParsingFallback) {
std::string description = "desc";
std::string command_name = "foo";
« no previous file with comments | « chrome/common/extensions/command.cc ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698