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

Side by Side Diff: webkit/common/quota/quota_types.cc

Issue 185793004: [Quota] Pass user gesture state with quota request message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 3 try Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "webkit/common/quota/quota_types.h"
6
7 namespace quota {
8
9 RequestStorageQuotaParams::RequestStorageQuotaParams()
10 : render_view_id(-1),
nasko 2014/03/03 20:00:32 Use MSG_ROUTING_NONE, which is the proper value to
Greg Billock 2014/03/03 22:41:47 Done.
11 request_id(-1),
12 storage_type(kStorageTypeTemporary),
13 requested_size(0),
14 user_gesture(false) {}
15
16 RequestStorageQuotaParams::~RequestStorageQuotaParams() {}
17
18 } // namespace quota
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698