Home | History | Annotate | Download | only in status_icons
      1 // Copyright (c) 2010 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.
      4 
      5 #include "chrome/browser/ui/cocoa/status_icons/status_tray_mac.h"
      6 
      7 #include "chrome/browser/ui/cocoa/status_icons/status_icon_mac.h"
      8 
      9 StatusTray* StatusTray::Create() {
     10   return new StatusTrayMac();
     11 }
     12 
     13 StatusTrayMac::StatusTrayMac() {
     14 }
     15 
     16 StatusIcon* StatusTrayMac::CreatePlatformStatusIcon() {
     17   return new StatusIconMac();
     18 }
     19