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

Unified 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 Tom's feedback. Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/page_state.cc ('k') | content/public/renderer/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/page_state_ios.cc
diff --git a/content/public/common/page_state_ios.cc b/content/public/common/page_state_ios.cc
deleted file mode 100644
index 9f83c781f6f9f2412965c6508633963c0a2ed4a1..0000000000000000000000000000000000000000
--- a/content/public/common/page_state_ios.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2013 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/public/common/page_state.h"
-
-#include "base/files/file_path.h"
-#include "base/logging.h"
-
-namespace content {
-
-// static
-PageState PageState::CreateFromURL(const GURL& url) {
- NOTIMPLEMENTED();
- return PageState();
-}
-
-// static
-PageState PageState::CreateForTesting(
- const GURL& url,
- bool body_contains_password_data,
- const char* optional_body_data,
- const base::FilePath* optional_body_file_path) {
- NOTIMPLEMENTED();
- return PageState();
-}
-
-std::vector<base::FilePath> PageState::GetReferencedFiles() const {
- NOTIMPLEMENTED();
- return std::vector<base::FilePath>();
-}
-
-PageState PageState::RemovePasswordData() const {
- NOTIMPLEMENTED();
- return *this;
-}
-
-PageState PageState::RemoveScrollOffset() const {
- NOTIMPLEMENTED();
- return *this;
-}
-
-} // namespace content
« no previous file with comments | « content/public/common/page_state.cc ('k') | content/public/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698