OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_USER_STYLE_SHEET_WATCHER_H_ | 5 #ifndef CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_ |
6 #define CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_ | 6 #define CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_ |
7 | 7 |
8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
9 #include "base/files/file_path_watcher.h" | 9 #include "base/files/file_path_watcher.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/sequenced_task_runner_helpers.h" | 12 #include "base/sequenced_task_runner_helpers.h" |
13 #include "chrome/browser/profiles/refcounted_profile_keyed_service.h" | 13 #include "chrome/browser/profiles/refcounted_profile_keyed_service.h" |
14 #include "content/public/browser/browser_thread.h" | |
15 #include "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
16 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
17 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
18 | 17 |
19 class Profile; | 18 class Profile; |
20 class UserStyleSheetLoader; | 19 class UserStyleSheetLoader; |
21 | 20 |
22 // Watches the user style sheet file and triggers reloads on the file thread | 21 // Watches the user style sheet file and triggers reloads on the file thread |
23 // whenever the file changes. | 22 // whenever the file changes. |
24 class UserStyleSheetWatcher | 23 class UserStyleSheetWatcher |
(...skipping 30 matching lines...) Expand all Loading... |
55 | 54 |
56 // Watches for changes to the css file so we can reload the style sheet. | 55 // Watches for changes to the css file so we can reload the style sheet. |
57 scoped_ptr<base::files::FilePathWatcher> file_watcher_; | 56 scoped_ptr<base::files::FilePathWatcher> file_watcher_; |
58 | 57 |
59 content::NotificationRegistrar registrar_; | 58 content::NotificationRegistrar registrar_; |
60 | 59 |
61 DISALLOW_COPY_AND_ASSIGN(UserStyleSheetWatcher); | 60 DISALLOW_COPY_AND_ASSIGN(UserStyleSheetWatcher); |
62 }; | 61 }; |
63 | 62 |
64 #endif // CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_ | 63 #endif // CHROME_BROWSER_USER_STYLE_SHEET_WATCHER_H_ |
OLD | NEW |