summaryrefslogtreecommitdiffstats
path: root/chromium/content/renderer/document_state.cc
blob: 961fcf21c0e1654c6ed263b0b9710e95d67854a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2012 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 "content/renderer/document_state.h"

#include "content/renderer/navigation_state.h"

namespace content {

DocumentState::DocumentState() {}

DocumentState::~DocumentState() {}

void DocumentState::set_navigation_state(
    std::unique_ptr<NavigationState> navigation_state) {
  navigation_state_ = std::move(navigation_state);
}

}  // namespace content