| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/public/common/page_state.h" | |
| 6 | |
| 7 #include "base/files/file_path.h" | |
| 8 #include "base/logging.h" | |
| 9 | |
| 10 namespace content { | |
| 11 | |
| 12 // static | |
| 13 PageState PageState::CreateFromURL(const GURL& url) { | |
| 14 NOTIMPLEMENTED(); | |
| 15 return PageState(); | |
| 16 } | |
| 17 | |
| 18 // static | |
| 19 PageState PageState::CreateForTesting( | |
| 20 const GURL& url, | |
| 21 bool body_contains_password_data, | |
| 22 const char* optional_body_data, | |
| 23 const base::FilePath* optional_body_file_path) { | |
| 24 NOTIMPLEMENTED(); | |
| 25 return PageState(); | |
| 26 } | |
| 27 | |
| 28 std::vector<base::FilePath> PageState::GetReferencedFiles() const { | |
| 29 NOTIMPLEMENTED(); | |
| 30 return std::vector<base::FilePath>(); | |
| 31 } | |
| 32 | |
| 33 PageState PageState::RemovePasswordData() const { | |
| 34 NOTIMPLEMENTED(); | |
| 35 return *this; | |
| 36 } | |
| 37 | |
| 38 PageState PageState::RemoveScrollOffset() const { | |
| 39 NOTIMPLEMENTED(); | |
| 40 return *this; | |
| 41 } | |
| 42 | |
| 43 } // namespace content | |
| OLD | NEW |