| 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_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.h" |
| 15 #include "base/win/atlcheck.h" |
| 15 #include "chrome_frame/bho.h" | 16 #include "chrome_frame/bho.h" |
| 16 #include "chrome_frame/chrome_frame_plugin.h" | 17 #include "chrome_frame/chrome_frame_plugin.h" |
| 17 #include "grit/chrome_frame_resources.h" | 18 #include "grit/chrome_frame_resources.h" |
| 18 | 19 |
| 19 // Include without path to make GYP build see it. | 20 // Include without path to make GYP build see it. |
| 20 #include "chrome_tab.h" // NOLINT | 21 #include "chrome_tab.h" // NOLINT |
| 21 | 22 |
| 22 class Bho; | 23 class Bho; |
| 23 | 24 |
| 24 // DeleteChromeHistory: Implements IDeleteBrowsingHistory and | 25 // DeleteChromeHistory: Implements IDeleteBrowsingHistory and |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 57 |
| 57 virtual void GetProfilePath(const std::wstring& profile_name, | 58 virtual void GetProfilePath(const std::wstring& profile_name, |
| 58 FilePath* profile_path); | 59 FilePath* profile_path); |
| 59 | 60 |
| 60 private: | 61 private: |
| 61 unsigned long remove_mask_; | 62 unsigned long remove_mask_; |
| 62 MessageLoopForUI loop_; | 63 MessageLoopForUI loop_; |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 #endif // CHROME_FRAME_DELETE_CHROME_HISTORY_H_ | 66 #endif // CHROME_FRAME_DELETE_CHROME_HISTORY_H_ |
| OLD | NEW |