Remove aura enum from DesktopMediaID to fix desktop mirroring audio (CrOS).
[chromium-blink-merge.git] / chrome / browser / safe_browsing / safe_browsing_api_handler.cc
blobdfa5a70e55a83f1363b0a567e35b37a2ba4c7b9a
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/safe_browsing/safe_browsing_api_handler.h"
7 SafeBrowsingApiHandler* SafeBrowsingApiHandler::instance_ = NULL;
9 // static
10 void SafeBrowsingApiHandler::SetInstance(SafeBrowsingApiHandler* instance) {
11 instance_ = instance;
14 // static
15 SafeBrowsingApiHandler* SafeBrowsingApiHandler::GetInstance() {
16 return instance_;