summaryrefslogtreecommitdiff
path: root/chromium/components/keyed_service/ios/browser_state_context_converter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/keyed_service/ios/browser_state_context_converter.cc')
-rw-r--r--chromium/components/keyed_service/ios/browser_state_context_converter.cc28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/components/keyed_service/ios/browser_state_context_converter.cc b/chromium/components/keyed_service/ios/browser_state_context_converter.cc
deleted file mode 100644
index 608bb559b5e..00000000000
--- a/chromium/components/keyed_service/ios/browser_state_context_converter.cc
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2014 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 "components/keyed_service/ios/browser_state_context_converter.h"
-
-namespace {
-
-// Global BrowserStateContextConverter* instance, may be null.
-BrowserStateContextConverter* g_browser_state_context_converter = nullptr;
-
-} // namespace
-
-// static
-void BrowserStateContextConverter::SetInstance(
- BrowserStateContextConverter* instance) {
- g_browser_state_context_converter = instance;
-}
-
-BrowserStateContextConverter* BrowserStateContextConverter::GetInstance() {
- return g_browser_state_context_converter;
-}
-
-BrowserStateContextConverter::BrowserStateContextConverter() {
-}
-
-BrowserStateContextConverter::~BrowserStateContextConverter() {
-}