summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/command.h
diff options
context:
space:
mode:
authorpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-18 14:43:27 +0000
committerpneubeck@chromium.org <pneubeck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-18 14:43:27 +0000
commita899c0b0e1020347c5fc4bfc9c6d83cf13e8bd4a (patch)
treeadf4d31e271ad9f54b6faf11be37acab769101c2 /chrome/common/extensions/command.h
parentc622538f6219a0d9d10878a25e447081b3b3c72c (diff)
downloadchromium_src-a899c0b0e1020347c5fc4bfc9c6d83cf13e8bd4a.zip
chromium_src-a899c0b0e1020347c5fc4bfc9c6d83cf13e8bd4a.tar.gz
chromium_src-a899c0b0e1020347c5fc4bfc9c6d83cf13e8bd4a.tar.bz2
Replaced DictionaryValue::key_iterator by DictionaryValue::Iterator outside of chrome/browser.
Marked Iterator::HasNext() as deprecated and added a method Iterator::CanAdvance() as replacement. As DictionaryValue::Iterator is actually a const iterator, I had to add several missing const annotations, mostly, in json_schema_validator.* and command.* BUG=162611 TEST=No new tests. Only semantically equivalent refactorings. Review URL: https://chromiumcodereview.appspot.com/11418150 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177673 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/command.h')
-rw-r--r--chrome/common/extensions/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/common/extensions/command.h b/chrome/common/extensions/command.h
index ee81e11..8edcfdf 100644
--- a/chrome/common/extensions/command.h
+++ b/chrome/common/extensions/command.h
@@ -37,7 +37,7 @@ class Command {
static ui::Accelerator StringToAccelerator(const std::string& accelerator);
// Parse the command.
- bool Parse(base::DictionaryValue* command,
+ bool Parse(const base::DictionaryValue* command,
const std::string& command_name,
int index,
string16* error);