diff options
author | chrome-bot@google.com <chrome-bot@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-02 00:14:02 +0000 |
---|---|---|
committer | chrome-bot@google.com <chrome-bot@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-02 00:14:02 +0000 |
commit | 4523fd290e2915710025b46c15be689cb7638a00 (patch) | |
tree | 85ab2b1efd9ec09e08ac247128c8dda0735b4399 /chrome/browser/extensions/extension_toolstrip_api.h | |
parent | bf0b51cbeef6ec8f7dc0d5fb46c76a739be5f84d (diff) | |
download | chromium_src-4523fd290e2915710025b46c15be689cb7638a00.zip chromium_src-4523fd290e2915710025b46c15be689cb7638a00.tar.gz chromium_src-4523fd290e2915710025b46c15be689cb7638a00.tar.bz2 |
Rolling back change 22245.
Too much red :-(
BUG=None
TEST=None
TBR=erikkay
Review URL: http://codereview.chromium.org/159763
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_toolstrip_api.h')
-rw-r--r-- | chrome/browser/extensions/extension_toolstrip_api.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/chrome/browser/extensions/extension_toolstrip_api.h b/chrome/browser/extensions/extension_toolstrip_api.h deleted file mode 100644 index 127c952..0000000 --- a/chrome/browser/extensions/extension_toolstrip_api.h +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) 2009 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_TOOLSTRIP_API_H_ -#define CHROME_BROWSER_EXTENSIONS_EXTENSION_TOOLSTRIP_API_H_ - -#include "chrome/browser/extensions/extension_function.h" -#include "chrome/browser/extensions/extension_shelf_model.h" - -// Function names. -namespace extension_toolstrip_api_functions { - extern const char kExpandFunction[]; - extern const char kCollapseFunction[]; -}; // namespace extension_toolstrip_api_functions - -class ToolstripFunction : public SyncExtensionFunction { - protected: - virtual bool RunImpl(); - - ExtensionShelfModel* model_; - ExtensionShelfModel::iterator toolstrip_; -}; - -class ToolstripExpandFunction : public ToolstripFunction { - virtual bool RunImpl(); -}; - -class ToolstripCollapseFunction : public ToolstripFunction { - virtual bool RunImpl(); -}; - -#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TOOLSTRIP_API_H_ |