| 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 #include "chrome/browser/automation/automation_provider.h" | 5 #include "chrome/browser/automation/automation_provider.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 | 8 |
| 9 #include "app/l10n_util.h" | |
| 10 #include "app/message_box_flags.h" | 9 #include "app/message_box_flags.h" |
| 11 #include "base/callback.h" | 10 #include "base/callback.h" |
| 12 #include "base/file_path.h" | 11 #include "base/file_path.h" |
| 13 #include "base/file_version_info.h" | 12 #include "base/file_version_info.h" |
| 14 #include "base/json/json_reader.h" | 13 #include "base/json/json_reader.h" |
| 15 #include "base/json/json_writer.h" | 14 #include "base/json/json_writer.h" |
| 16 #include "base/json/string_escape.h" | 15 #include "base/json/string_escape.h" |
| 17 #include "base/keyboard_codes.h" | 16 #include "base/keyboard_codes.h" |
| 18 #include "base/message_loop.h" | 17 #include "base/message_loop.h" |
| 19 #include "base/path_service.h" | 18 #include "base/path_service.h" |
| (...skipping 4376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4396 } | 4395 } |
| 4397 | 4396 |
| 4398 void AutomationProvider::WaitForPopupMenuToOpen(IPC::Message* reply_message) { | 4397 void AutomationProvider::WaitForPopupMenuToOpen(IPC::Message* reply_message) { |
| 4399 NOTIMPLEMENTED(); | 4398 NOTIMPLEMENTED(); |
| 4400 } | 4399 } |
| 4401 #endif // !defined(TOOLKIT_VIEWS) | 4400 #endif // !defined(TOOLKIT_VIEWS) |
| 4402 | 4401 |
| 4403 void AutomationProvider::ResetToDefaultTheme() { | 4402 void AutomationProvider::ResetToDefaultTheme() { |
| 4404 profile_->ClearTheme(); | 4403 profile_->ClearTheme(); |
| 4405 } | 4404 } |
| OLD | NEW |