summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webkit/build/glue/glue.vcproj22
-rw-r--r--webkit/glue/autofill_form.h30
2 files changed, 17 insertions, 35 deletions
diff --git a/webkit/build/glue/glue.vcproj b/webkit/build/glue/glue.vcproj
index ce35495..8524d3c 100644
--- a/webkit/build/glue/glue.vcproj
+++ b/webkit/build/glue/glue.vcproj
@@ -125,10 +125,6 @@
Name="API"
>
<File
- RelativePath="..\..\glue\autofill_form.h"
- >
- </File>
- <File
RelativePath="..\..\glue\cache_manager.h"
>
</File>
@@ -373,6 +369,14 @@
>
</File>
<File
+ RelativePath="..\..\glue\glue_accessibility.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\glue\glue_accessibility.h"
+ >
+ </File>
+ <File
RelativePath="..\..\glue\glue_serialize.cc"
>
</File>
@@ -457,7 +461,7 @@
>
</File>
<File
- RelativePath="..\..\glue\resource_handle_win.cc"
+ RelativePath="..\..\glue\resource_handle_impl.cc"
>
</File>
<File
@@ -477,6 +481,14 @@
>
</File>
<File
+ RelativePath="..\..\glue\stacking_order_iterator.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\glue\stacking_order_iterator.h"
+ >
+ </File>
+ <File
RelativePath="..\..\glue\webcursor.cc"
>
</File>
diff --git a/webkit/glue/autofill_form.h b/webkit/glue/autofill_form.h
deleted file mode 100644
index a817137..0000000
--- a/webkit/glue/autofill_form.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_GLUE_AUTOFILL_FORM_H_
-#define WEBKIT_GLUE_AUTOFILL_FORM_H_
-
-#include <string>
-#include <vector>
-
-// The AutofillForm struct represents a single HTML form together with the
-// values entered in the fields.
-
-struct AutofillForm {
- // Struct for storing name/value pairs.
- struct Element {
- Element() {}
- Element(const std::wstring& in_name, const std::wstring& in_value) {
- name = in_name;
- value = in_value;
- }
- std::wstring name;
- std::wstring value;
- };
-
- // A vector of all the input fields in the form.
- std::vector<Element> elements;
-};
-
-#endif // WEBKIT_GLUE_AUTOFILL_FORM_H_