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

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

Issue 387020: Upstreaming WebKit.gyp (Closed)
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « webkit/glue/simple_webmimeregistry_impl.cc ('k') | webkit/glue/webclipboard_impl.h » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/webaccessibility.h" 5 #include "webkit/glue/webaccessibility.h"
6 6
7 #include "webkit/api/public/WebAccessibilityCache.h" 7 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityCache.h"
8 #include "webkit/api/public/WebAccessibilityObject.h" 8 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityObject.h"
9 #include "webkit/api/public/WebAccessibilityRole.h" 9 #include "third_party/WebKit/WebKit/chromium/public/WebAccessibilityRole.h"
10 #include "webkit/api/public/WebPoint.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebPoint.h"
11 #include "webkit/api/public/WebRect.h" 11 #include "third_party/WebKit/WebKit/chromium/public/WebRect.h"
12 #include "webkit/api/public/WebString.h" 12 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
13 13
14 using WebKit::WebAccessibilityCache; 14 using WebKit::WebAccessibilityCache;
15 using WebKit::WebAccessibilityRole; 15 using WebKit::WebAccessibilityRole;
16 using WebKit::WebAccessibilityObject; 16 using WebKit::WebAccessibilityObject;
17 using WebKit::WebPoint; 17 using WebKit::WebPoint;
18 using WebKit::WebRect; 18 using WebKit::WebRect;
19 using WebKit::WebString; 19 using WebKit::WebString;
20 20
21 namespace webkit_glue { 21 namespace webkit_glue {
22 22
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 331
332 int id = cache->addOrGetId(out_acc_obj); 332 int id = cache->addOrGetId(out_acc_obj);
333 out_params->object_id = id; 333 out_params->object_id = id;
334 out_params->output_long1 = -1; 334 out_params->output_long1 = -1;
335 335
336 // TODO(klink): Handle simple objects returned. 336 // TODO(klink): Handle simple objects returned.
337 return true; 337 return true;
338 } 338 }
339 339
340 } // namespace webkit_glue 340 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/simple_webmimeregistry_impl.cc ('k') | webkit/glue/webclipboard_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698