summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/browser_theme_provider_init.h
blob: 0959e9c61f276e78057ade551cedd717448ac4b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2010 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.

#ifndef CHROME_BROWSER_COCOA_BROWSER_THEME_PROVIDER_INIT_H_
#define CHROME_BROWSER_COCOA_BROWSER_THEME_PROVIDER_INIT_H_

#import "third_party/GTM/AppKit/GTMTheme.h"

class BrowserThemeProvider;

// Provides a routine to initialize GTMTheme with data from a provided
// |BrowserThemeProvider|.
@interface GTMTheme(BrowserThemeProviderInitialization)
+ (GTMTheme*)themeWithBrowserThemeProvider:(BrowserThemeProvider*)provider
                            isOffTheRecord:(BOOL)offTheRecord;
@end

#endif  // CHROME_BROWSER_COCOA_BROWSER_THEME_PROVIDER_INIT_H_