Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / infobars / before_translate_infobar_controller.h
blobdf751e2e3be68e02db553ebd536acca8d394ea8d
1 // Copyright (c) 2011 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 #import "chrome/browser/ui/cocoa/infobars/translate_infobar_base.h"
7 @interface BeforeTranslateInfobarController : TranslateInfoBarControllerBase {
8 base::scoped_nsobject<NSButton> alwaysTranslateButton_;
9 base::scoped_nsobject<NSButton> neverTranslateButton_;
12 // Creates and initializes the alwaysTranslate and neverTranslate buttons.
13 - (void)initializeExtraControls;
15 @end
17 @interface BeforeTranslateInfobarController (TestingAPI)
19 - (NSButton*)alwaysTranslateButton;
20 - (NSButton*)neverTranslateButton;
22 @end