Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Side by Side Diff: extensions/browser/extension_message_filter.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "extensions/browser/extension_message_filter.h" 5 #include "extensions/browser/extension_message_filter.h"
6 6
7 #include "base/macros.h"
7 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
8 #include "components/crx_file/id_util.h" 9 #include "components/crx_file/id_util.h"
9 #include "components/keyed_service/content/browser_context_keyed_service_shutdow n_notifier_factory.h" 10 #include "components/keyed_service/content/browser_context_keyed_service_shutdow n_notifier_factory.h"
10 #include "content/public/browser/browser_thread.h" 11 #include "content/public/browser/browser_thread.h"
11 #include "content/public/browser/render_process_host.h" 12 #include "content/public/browser/render_process_host.h"
12 #include "extensions/browser/blob_holder.h" 13 #include "extensions/browser/blob_holder.h"
13 #include "extensions/browser/event_router.h" 14 #include "extensions/browser/event_router.h"
14 #include "extensions/browser/event_router_factory.h" 15 #include "extensions/browser/event_router_factory.h"
15 #include "extensions/browser/extension_registry.h" 16 #include "extensions/browser/extension_registry.h"
16 #include "extensions/browser/process_manager.h" 17 #include "extensions/browser/process_manager.h"
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 // The extension has no background page, so there is nothing to wake. 312 // The extension has no background page, so there is nothing to wake.
312 SendWakeEventPageResponse(request_id, false); 313 SendWakeEventPageResponse(request_id, false);
313 } 314 }
314 315
315 void ExtensionMessageFilter::SendWakeEventPageResponse(int request_id, 316 void ExtensionMessageFilter::SendWakeEventPageResponse(int request_id,
316 bool success) { 317 bool success) {
317 Send(new ExtensionMsg_WakeEventPageResponse(request_id, success)); 318 Send(new ExtensionMsg_WakeEventPageResponse(request_id, success));
318 } 319 }
319 320
320 } // namespace extensions 321 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/extension_icon_image_unittest.cc ('k') | extensions/browser/extension_pref_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698