OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_EXTENSIONS_USER_SCRIPT_MASTER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_MASTER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_MASTER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_MASTER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "base/file_path.h" | 12 #include "base/file_path.h" |
14 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
15 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
16 #include "base/shared_memory.h" | 15 #include "base/shared_memory.h" |
17 #include "base/string_piece.h" | 16 #include "base/string_piece.h" |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 // finishes. This boolean tracks whether another load is pending. | 161 // finishes. This boolean tracks whether another load is pending. |
163 bool pending_load_; | 162 bool pending_load_; |
164 | 163 |
165 // The profile for which the scripts managed here are installed. | 164 // The profile for which the scripts managed here are installed. |
166 Profile* profile_; | 165 Profile* profile_; |
167 | 166 |
168 DISALLOW_COPY_AND_ASSIGN(UserScriptMaster); | 167 DISALLOW_COPY_AND_ASSIGN(UserScriptMaster); |
169 }; | 168 }; |
170 | 169 |
171 #endif // CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_MASTER_H_ | 170 #endif // CHROME_BROWSER_EXTENSIONS_USER_SCRIPT_MASTER_H_ |
OLD | NEW |