blob: cc4fc22ce6f147bb71d7ddab32265dd37e2ad53b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (c) 2009 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.
#import "chrome/browser/cocoa/command_observer_bridge.h"
#include "base/logging.h"
CommandObserverBridge::CommandObserverBridge(
id<CommandObserverProtocol> observer, CommandUpdater* commands)
: observer_(observer), commands_(commands) {
DCHECK(observer_ && commands_);
}
CommandObserverBridge::~CommandObserverBridge() {
// Unregister the notifications
commands_->RemoveCommandObserver(this);
}
void CommandObserverBridge::ObserveCommand(int command) {
commands_->AddCommandObserver(command, this);
}
void CommandObserverBridge::EnabledStateChangedForCommand(int command,
bool enabled) {
[observer_ enabledStateChangedForCommand:command
enabled:enabled ? YES : NO];
}
|