| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_ACTION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_ACTION_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_ACTION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_ACTION_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/scoped_ptr.h" | |
| 15 #include "third_party/skia/include/core/SkColor.h" | 14 #include "third_party/skia/include/core/SkColor.h" |
| 16 | 15 |
| 17 namespace gfx { | 16 namespace gfx { |
| 18 class Canvas; | 17 class Canvas; |
| 19 class Rect; | 18 class Rect; |
| 20 } | 19 } |
| 21 | 20 |
| 22 class GURL; | 21 class GURL; |
| 23 class SkBitmap; | 22 class SkBitmap; |
| 24 | 23 |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 }; | 193 }; |
| 195 | 194 |
| 196 template<> | 195 template<> |
| 197 struct ExtensionAction::ValueTraits<int> { | 196 struct ExtensionAction::ValueTraits<int> { |
| 198 static int CreateEmpty() { | 197 static int CreateEmpty() { |
| 199 return -1; | 198 return -1; |
| 200 } | 199 } |
| 201 }; | 200 }; |
| 202 | 201 |
| 203 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_ACTION_H_ | 202 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_ACTION_H_ |
| OLD | NEW |