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

Side by Side Diff: content/browser/permissions/permission_pending_request.cc

Issue 1260193009: renderer: implement multiple permission requesting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@permissions-request-multiple
Patch Set: Fix review comments Created 5 years, 4 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/permissions/permission_pending_request.h"
6
7 #include "base/callback.h"
8 #include "content/public/browser/permission_manager.h"
9 #include "content/public/browser/permission_type.h"
10
11 namespace content {
12
13 PermissionPendingRequest::PermissionPendingRequest(
14 PermissionRequestCallback callback,
15 int request_count) :
mlamouri (slow - plz ping) 2015/09/02 11:36:41 style: I think ':' should be on the next line
Lalit Maganti 2015/09/02 14:24:50 Done.
16 callback_(callback),
17 request_count_(request_count) {
18 }
19
20 PermissionPendingRequest::~PermissionPendingRequest() {
21 if (!callback_.is_null()) {
22 mojo::Array<PermissionStatus> statuses =
23 mojo::Array<PermissionStatus>::New(request_count_);
24 for (int i = 0; i < request_count_; ++i)
25 statuses[i] = PERMISSION_STATUS_DENIED;
26 callback_.Run(statuses.Pass());
27 }
28 }
29
30 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698