OLD | NEW |
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 Loading... |
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 |
OLD | NEW |