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 #include "chrome/browser/bookmarks/bookmark_manager_extension_api.h" | 5 #include "chrome/browser/bookmarks/bookmark_manager_extension_api.h" |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/json/json_writer.h" | 9 #include "base/json/json_writer.h" |
10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 } | 166 } |
167 | 167 |
168 void BookmarkManagerExtensionEventRouter::DispatchEvent(const char* event_name, | 168 void BookmarkManagerExtensionEventRouter::DispatchEvent(const char* event_name, |
169 const ListValue* args) { | 169 const ListValue* args) { |
170 if (!profile_->GetExtensionEventRouter()) | 170 if (!profile_->GetExtensionEventRouter()) |
171 return; | 171 return; |
172 | 172 |
173 std::string json_args; | 173 std::string json_args; |
174 base::JSONWriter::Write(args, &json_args); | 174 base::JSONWriter::Write(args, &json_args); |
175 profile_->GetExtensionEventRouter()->DispatchEventToRenderers( | 175 profile_->GetExtensionEventRouter()->DispatchEventToRenderers( |
176 event_name, json_args, NULL, GURL()); | 176 event_name, json_args, NULL, GURL(), extensions::EventFilteringInfo()); |
177 } | 177 } |
178 | 178 |
179 void BookmarkManagerExtensionEventRouter::DispatchDragEvent( | 179 void BookmarkManagerExtensionEventRouter::DispatchDragEvent( |
180 const BookmarkNodeData& data, const char* event_name) { | 180 const BookmarkNodeData& data, const char* event_name) { |
181 if (data.size() == 0) | 181 if (data.size() == 0) |
182 return; | 182 return; |
183 | 183 |
184 ListValue args; | 184 ListValue args; |
185 BookmarkNodeDataToJSON(profile_, data, &args); | 185 BookmarkNodeDataToJSON(profile_, data, &args); |
186 DispatchEvent(event_name, &args); | 186 DispatchEvent(event_name, &args); |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
509 bool can_open_new_windows = true; | 509 bool can_open_new_windows = true; |
510 | 510 |
511 #if defined(OS_WIN) | 511 #if defined(OS_WIN) |
512 if (base::win::IsMetroProcess()) | 512 if (base::win::IsMetroProcess()) |
513 can_open_new_windows = false; | 513 can_open_new_windows = false; |
514 #endif // OS_WIN | 514 #endif // OS_WIN |
515 | 515 |
516 result_.reset(Value::CreateBooleanValue(can_open_new_windows)); | 516 result_.reset(Value::CreateBooleanValue(can_open_new_windows)); |
517 return true; | 517 return true; |
518 } | 518 } |
OLD | NEW |