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

Side by Side Diff: webkit/glue/web_intent_data.cc

Issue 10713007: Make isolated file system works for a device root (e.g. X:\\) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 8 years, 5 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
« no previous file with comments | « webkit/glue/web_intent_data.h ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "webkit/glue/web_intent_data.h" 5 #include "webkit/glue/web_intent_data.h"
6 6
7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIntent.h" 7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIntent.h"
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMessagePortChannel .h" 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMessagePortChannel .h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURL.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 int64 blob_length_in) 57 int64 blob_length_in)
58 : action(action_in), 58 : action(action_in),
59 type(type_in), 59 type(type_in),
60 blob_file(blob_file_in), 60 blob_file(blob_file_in),
61 blob_length(blob_length_in), 61 blob_length(blob_length_in),
62 data_type(BLOB) { 62 data_type(BLOB) {
63 } 63 }
64 64
65 WebIntentData::WebIntentData(const string16& action_in, 65 WebIntentData::WebIntentData(const string16& action_in,
66 const string16& type_in, 66 const string16& type_in,
67 const FilePath& root_path_in, 67 const std::string& root_name_in,
68 const std::string& filesystem_id_in) 68 const std::string& filesystem_id_in)
69 : action(action_in), 69 : action(action_in),
70 type(type_in), 70 type(type_in),
71 blob_length(0), 71 blob_length(0),
72 root_path(root_path_in), 72 root_name(root_name_in),
73 filesystem_id(filesystem_id_in), 73 filesystem_id(filesystem_id_in),
74 data_type(FILESYSTEM) { 74 data_type(FILESYSTEM) {
75 } 75 }
76 76
77 } // namespace webkit_glue 77 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/web_intent_data.h ('k') | webkit/support/webkit_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698