diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-27 12:35:57 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-27 12:35:57 +0000 |
commit | 32eaec21d75dffb80d79b5b81df008853bd42508 (patch) | |
tree | cfc8daff708991a07b3d998e90e78cfdb5af469e /base | |
parent | 93238c3911103c0e7341919eb334f17cb8f8c325 (diff) | |
download | chromium_src-32eaec21d75dffb80d79b5b81df008853bd42508.zip chromium_src-32eaec21d75dffb80d79b5b81df008853bd42508.tar.gz chromium_src-32eaec21d75dffb80d79b5b81df008853bd42508.tar.bz2 |
base: Remove stub registry.h file implementation.
No one else is including it anymore.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/4200003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/registry.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/base/registry.h b/base/registry.h deleted file mode 100644 index 19da19c..0000000 --- a/base/registry.h +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) 2010 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 BASE_REGISTRY_H_ -#define BASE_REGISTRY_H_ -#pragma once - -// TODO(brettw) remove this file when all callers are converted to using the -// new location & namespace. -#include "base/win/registry.h" - -class RegKey : public base::win::RegKey { - public: - RegKey() {} - RegKey(HKEY rootkey, const wchar_t* subkey, REGSAM access) - : base::win::RegKey(rootkey, subkey, access) {} - ~RegKey() { base::win::RegKey::~RegKey(); } -}; - -#endif // BASE_REGISTRY_H_ |