diff options
author | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-31 23:25:33 +0000 |
---|---|---|
committer | mpcomplete@chromium.org <mpcomplete@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-31 23:25:33 +0000 |
commit | f1a63d5f6bef794c761447e7dc7b1415b133bdb3 (patch) | |
tree | 297e66d439d262c54a22b0360aa6241082018d2e /chrome/browser/extensions/extension_webrequest_api.h | |
parent | c1443d84cafab2dc81650715b102afe4d28cb27b (diff) | |
download | chromium_src-f1a63d5f6bef794c761447e7dc7b1415b133bdb3.zip chromium_src-f1a63d5f6bef794c761447e7dc7b1415b133bdb3.tar.gz chromium_src-f1a63d5f6bef794c761447e7dc7b1415b133bdb3.tar.bz2 |
Revert "First steps towards webRequest extension API."
Seems to have broken the sync_integration_tests.
This reverts commit d6f8d16cd6a5ebdf019c4755e7d42aee8136abf1.
TBR=aa
BUG=60101
TEST=no
Review URL: http://codereview.chromium.org/6287029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73219 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_webrequest_api.h')
-rwxr-xr-x | chrome/browser/extensions/extension_webrequest_api.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/chrome/browser/extensions/extension_webrequest_api.h b/chrome/browser/extensions/extension_webrequest_api.h deleted file mode 100755 index 1945627..0000000 --- a/chrome/browser/extensions/extension_webrequest_api.h +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright (c) 2011 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBREQUEST_API_H_ -#define CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBREQUEST_API_H_ -#pragma once - -#include <string> - -#include "base/singleton.h" - -class ExtensionIOEventRouter; -class GURL; - -// IO thread -class ExtensionWebRequestEventRouter { - public: - static ExtensionWebRequestEventRouter* GetInstance(); - - // TODO(mpcomplete): additional params - void OnBeforeRequest(const ExtensionIOEventRouter* event_router, - const GURL& url, const std::string& method); - - private: - friend struct DefaultSingletonTraits<ExtensionWebRequestEventRouter>; - - ExtensionWebRequestEventRouter(); - ~ExtensionWebRequestEventRouter(); - - DISALLOW_COPY_AND_ASSIGN(ExtensionWebRequestEventRouter); -}; - - -#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_WEBREQUEST_API_H_ |