summaryrefslogtreecommitdiff
path: root/chromium/content/renderer/document_state.cc
blob: cd4b988c49ff70060c385e20fa7fbd78d3a1a567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2012 The Chromium Authors
// 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