blob: 9f7f120252bfc52653a4e9e434c3bfaee170b027 [file] [log] [blame]
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "cobalt/dom/character_data.h"
#include "cobalt/dom/mutation_reporter.h"
namespace cobalt {
namespace dom {
CharacterData::CharacterData(Document* document, const base::StringPiece& data)
: Node(document), data_(data.begin(), data.end()) {}
void CharacterData::set_data(const std::string& data) {
MutationReporter mutation_reporter(this, GatherInclusiveAncestorsObservers());
mutation_reporter.ReportCharacterDataMutation(data_);
data_ = data;
}
} // namespace dom
} // namespace cobalt