Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: content/public/common/page_state_ios.cc

Issue 16867005: Re-implement PageState serialization without a Blink API dependency. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improvements based on review feedback. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698