Index: chrome/browser/icon_manager_win.cc |
diff --git a/chrome/browser/icon_manager_win.cc b/chrome/browser/icon_manager_win.cc |
deleted file mode 100644 |
index a16e02ef3cfc1689895266c5e7257b611135b9af..0000000000000000000000000000000000000000 |
--- a/chrome/browser/icon_manager_win.cc |
+++ /dev/null |
@@ -1,16 +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. |
- |
-#include "chrome/browser/icon_manager.h" |
- |
-#include "base/files/file_path.h" |
- |
-IconGroupID IconManager::GetGroupIDFromFilepath( |
- const base::FilePath& filepath) { |
- std::wstring extension = filepath.Extension(); |
- if (extension != L".exe" && extension != L".dll" && extension != L".ico") |
- return extension; |
- else |
- return filepath.value(); |
-} |