summaryrefslogtreecommitdiffstats
path: root/mojo/shell/storage.h
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-18 22:28:43 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-18 22:28:43 +0000
commit25d8c048873f826e9063fab6810a62d9830b7549 (patch)
tree3bbd10713de5356f940da9f0a86d577cfc20cd70 /mojo/shell/storage.h
parent0ba789ead933b0016de90184adf808781905ef24 (diff)
downloadchromium_src-25d8c048873f826e9063fab6810a62d9830b7549.zip
chromium_src-25d8c048873f826e9063fab6810a62d9830b7549.tar.gz
chromium_src-25d8c048873f826e9063fab6810a62d9830b7549.tar.bz2
Revert "Teach mojo_shell how to load http URLs"
This reverts commit 2410e4c01a215a487490e7bf87c4369cb8c13e53. This CL doens't compile on Linux x64. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229486 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/shell/storage.h')
-rw-r--r--mojo/shell/storage.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/mojo/shell/storage.h b/mojo/shell/storage.h
deleted file mode 100644
index 62cb0a2..0000000
--- a/mojo/shell/storage.h
+++ /dev/null
@@ -1,32 +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.
-
-#ifndef MOJO_SHELL_STORAGE_H_
-#define MOJO_SHELL_STORAGE_H_
-
-#include "base/files/file_path.h"
-
-namespace mojo {
-namespace shell {
-
-// A object that represents the persistent storage used by the shell.
-class Storage {
- public:
- Storage();
- ~Storage();
-
- base::FilePath profile_path() const {
- return profile_path_;
- }
-
- private:
- base::FilePath profile_path_;
-
- DISALLOW_COPY_AND_ASSIGN(Storage);
-};
-
-} // namespace shell
-} // namespace mojo
-
-#endif // MOJO_SHELL_STORAGE_H_