Index: chrome/browser/chromeos/extensions/get_chromeos_info_extension_api.h |
diff --git a/chrome/browser/chromeos/extensions/get_chromeos_info_extension_api.h b/chrome/browser/chromeos/extensions/get_chromeos_info_extension_api.h |
deleted file mode 100644 |
index cf680828e2a5ea4e363ec9c28e8b3b5c41c68851..0000000000000000000000000000000000000000 |
--- a/chrome/browser/chromeos/extensions/get_chromeos_info_extension_api.h |
+++ /dev/null |
@@ -1,27 +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_CHROMEOS_EXTENSIONS_GET_CHROMEOS_INFO_EXTENSION_API_H_ |
-#define CHROME_BROWSER_CHROMEOS_EXTENSIONS_GET_CHROMEOS_INFO_EXTENSION_API_H_ |
-#pragma once |
- |
-#include <string> |
-#include "chrome/browser/extensions/extension_function.h" |
- |
-class GetChromeosInfoFunction : public AsyncExtensionFunction { |
- public: |
- GetChromeosInfoFunction(); |
- |
- protected: |
- virtual ~GetChromeosInfoFunction(); |
- |
- virtual bool RunImpl(); |
- |
- private: |
- bool GetValue(const std::string& property_name, std::string* value); |
- |
- DECLARE_EXTENSION_FUNCTION_NAME("chromeosInfoPrivate.get"); |
-}; |
- |
-#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_GET_CHROMEOS_INFO_EXTENSION_API_H_ |