Home | History | Annotate | Download | only in test
      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 "base/test/mock_chrome_application_mac.h"
      6 
      7 @implementation MockCrApp
      8 - (BOOL)isHandlingSendEvent {
      9   return NO;
     10 }
     11 @end
     12 
     13 namespace mock_cr_app {
     14 
     15 void RegisterMockCrApp() {
     16   [MockCrApp sharedApplication];
     17 }
     18 
     19 }  // namespace mock_cr_app
     20