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

Side by Side Diff: chrome/browser/extensions/api/identity/identity_mint_queue.cc

Issue 877323002: Mechanical rename of tracing includes for /chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/extensions/api/identity/identity_mint_queue.h" 5 #include "chrome/browser/extensions/api/identity/identity_mint_queue.h"
6 6
7 #include "base/debug/trace_event.h"
8 #include "base/logging.h" 7 #include "base/logging.h"
9 #include "base/stl_util.h" 8 #include "base/stl_util.h"
9 #include "base/trace_event/trace_event.h"
10 10
11 namespace extensions { 11 namespace extensions {
12 12
13 IdentityMintRequestQueue::IdentityMintRequestQueue() { 13 IdentityMintRequestQueue::IdentityMintRequestQueue() {
14 } 14 }
15 15
16 IdentityMintRequestQueue::~IdentityMintRequestQueue() { 16 IdentityMintRequestQueue::~IdentityMintRequestQueue() {
17 for (RequestQueueMap::const_iterator 17 for (RequestQueueMap::const_iterator
18 it = interactive_request_queue_map_.begin(); 18 it = interactive_request_queue_map_.begin();
19 it != interactive_request_queue_map_.end(); 19 it != interactive_request_queue_map_.end();
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 void IdentityMintRequestQueue::RunRequest( 87 void IdentityMintRequestQueue::RunRequest(
88 IdentityMintRequestQueue::MintType type, 88 IdentityMintRequestQueue::MintType type,
89 RequestQueue& request_queue) { 89 RequestQueue& request_queue) {
90 TRACE_EVENT_ASYNC_STEP_INTO0( 90 TRACE_EVENT_ASYNC_STEP_INTO0(
91 "identity", "IdentityMintRequestQueue", request_queue.front(), "RUNNING"); 91 "identity", "IdentityMintRequestQueue", request_queue.front(), "RUNNING");
92 request_queue.front()->StartMintToken(type); 92 request_queue.front()->StartMintToken(type);
93 } 93 }
94 94
95 } // namespace extensions 95 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/identity/identity_api.cc ('k') | chrome/browser/extensions/api/identity/web_auth_flow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698