| Index: ui/base/theme_provider.h
|
| ===================================================================
|
| --- ui/base/theme_provider.h (revision 71846)
|
| +++ ui/base/theme_provider.h (working copy)
|
| @@ -1,9 +1,9 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 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 APP_THEME_PROVIDER_H_
|
| -#define APP_THEME_PROVIDER_H_
|
| +#ifndef UI_BASE_THEME_PROVIDER_H_
|
| +#define UI_BASE_THEME_PROVIDER_H_
|
| #pragma once
|
|
|
| #include "base/basictypes.h"
|
| @@ -28,6 +28,8 @@
|
| class RefCountedMemory;
|
| class SkBitmap;
|
|
|
| +namespace ui {
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| //
|
| // ThemeProvider
|
| @@ -41,6 +43,7 @@
|
| public:
|
| virtual ~ThemeProvider();
|
|
|
| + // TODO(beng): This dependency is horrible!
|
| // Initialize the provider with the passed in profile.
|
| virtual void Init(Profile* profile) = 0;
|
|
|
| @@ -112,4 +115,6 @@
|
| #endif
|
| };
|
|
|
| -#endif // APP_THEME_PROVIDER_H_
|
| +} // namespace ui
|
| +
|
| +#endif // UI_BASE_THEME_PROVIDER_H_
|
|
|