OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 EXTENSIONS_COMMON_USER_SCRIPT_H_ | 5 #ifndef EXTENSIONS_COMMON_USER_SCRIPT_H_ |
6 #define EXTENSIONS_COMMON_USER_SCRIPT_H_ | 6 #define EXTENSIONS_COMMON_USER_SCRIPT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | |
12 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
13 #include "base/strings/string_piece.h" | 12 #include "base/strings/string_piece.h" |
14 #include "extensions/common/host_id.h" | 13 #include "extensions/common/host_id.h" |
15 #include "extensions/common/url_pattern.h" | 14 #include "extensions/common/url_pattern.h" |
16 #include "extensions/common/url_pattern_set.h" | 15 #include "extensions/common/url_pattern_set.h" |
17 #include "url/gurl.h" | 16 #include "url/gurl.h" |
18 | 17 |
19 namespace base { | 18 namespace base { |
20 class Pickle; | 19 class Pickle; |
21 class PickleIterator; | 20 class PickleIterator; |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 }; | 318 }; |
320 | 319 |
321 // For storing UserScripts with unique IDs in sets. | 320 // For storing UserScripts with unique IDs in sets. |
322 bool operator<(const UserScript& script1, const UserScript& script2); | 321 bool operator<(const UserScript& script1, const UserScript& script2); |
323 | 322 |
324 typedef std::vector<UserScript> UserScriptList; | 323 typedef std::vector<UserScript> UserScriptList; |
325 | 324 |
326 } // namespace extensions | 325 } // namespace extensions |
327 | 326 |
328 #endif // EXTENSIONS_COMMON_USER_SCRIPT_H_ | 327 #endif // EXTENSIONS_COMMON_USER_SCRIPT_H_ |
OLD | NEW |