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_FRAME_DELETE_CHROME_HISTORY_H_ | 5 #ifndef CHROME_FRAME_DELETE_CHROME_HISTORY_H_ |
6 #define CHROME_FRAME_DELETE_CHROME_HISTORY_H_ | 6 #define CHROME_FRAME_DELETE_CHROME_HISTORY_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlwin.h> | 9 #include <atlwin.h> |
10 #include <atlcom.h> | 10 #include <atlcom.h> |
11 | 11 |
12 #include <deletebrowsinghistory.h> | 12 #include <deletebrowsinghistory.h> |
13 | 13 |
14 #include "base/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
15 #include "chrome_frame/bho.h" | 15 #include "chrome_frame/bho.h" |
16 #include "chrome_frame/chrome_frame_plugin.h" | 16 #include "chrome_frame/chrome_frame_plugin.h" |
17 #include "chrome_frame/chrome_tab.h" | 17 #include "chrome_frame/chrome_tab.h" |
18 #include "grit/chrome_frame_resources.h" | 18 #include "grit/chrome_frame_resources.h" |
19 | 19 |
20 class Bho; | 20 class Bho; |
21 | 21 |
22 // DeleteChromeHistory: Implements IDeleteBrowsingHistory and | 22 // DeleteChromeHistory: Implements IDeleteBrowsingHistory and |
23 // pumps cache clearing operations over automation. Blocks the UI | 23 // pumps cache clearing operations over automation. Blocks the UI |
24 // thread while operating. You have been warned. | 24 // thread while operating. You have been warned. |
(...skipping 29 matching lines...) Expand all Loading... |
54 | 54 |
55 virtual void GetProfilePath(const std::wstring& profile_name, | 55 virtual void GetProfilePath(const std::wstring& profile_name, |
56 base::FilePath* profile_path); | 56 base::FilePath* profile_path); |
57 | 57 |
58 private: | 58 private: |
59 unsigned long remove_mask_; | 59 unsigned long remove_mask_; |
60 base::MessageLoopForUI loop_; | 60 base::MessageLoopForUI loop_; |
61 }; | 61 }; |
62 | 62 |
63 #endif // CHROME_FRAME_DELETE_CHROME_HISTORY_H_ | 63 #endif // CHROME_FRAME_DELETE_CHROME_HISTORY_H_ |
OLD | NEW |