Print Preview: Refactoring print/cancel button and print summary.
[chromium-blink-merge.git] / content / common / css_colors.h
blob2b79e5ad1de829535a630121763af32b5b22126c
1 // Copyright (c) 2009 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 #ifndef CONTENT_COMMON_CSS_COLORS_H_
6 #define CONTENT_COMMON_CSS_COLORS_H_
7 #pragma once
9 #include <utility>
11 #include "base/basictypes.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColor.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebColorName.h"
15 // Functionality related to sending the values of CSS colors to the renderer.
16 class CSSColors {
17 public:
18 typedef WebKit::WebColorName CSSColorName;
19 typedef std::pair<CSSColorName, WebKit::WebColor> CSSColorMapping;
21 private:
22 DISALLOW_COPY_AND_ASSIGN(CSSColors);
25 #endif // CONTENT_COMMON_CSS_COLORS_H_