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

Side by Side Diff: Source/web/tests/WebViewTest.cpp

Issue 60153002: Move KeyboardCodes to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove stray reference to KeyboardCodes.h Created 7 years 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 | « Source/web/tests/PopupMenuTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "WebViewImpl.h" 50 #include "WebViewImpl.h"
51 #include "WebWidget.h" 51 #include "WebWidget.h"
52 #include "core/dom/Document.h" 52 #include "core/dom/Document.h"
53 #include "core/dom/Element.h" 53 #include "core/dom/Element.h"
54 #include "core/html/HTMLDocument.h" 54 #include "core/html/HTMLDocument.h"
55 #include "core/html/HTMLInputElement.h" 55 #include "core/html/HTMLInputElement.h"
56 #include "core/loader/FrameLoadRequest.h" 56 #include "core/loader/FrameLoadRequest.h"
57 #include "core/frame/FrameView.h" 57 #include "core/frame/FrameView.h"
58 #include "core/page/Chrome.h" 58 #include "core/page/Chrome.h"
59 #include "core/frame/Settings.h" 59 #include "core/frame/Settings.h"
60 #include "core/platform/chromium/KeyboardCodes.h" 60 #include "platform/KeyboardCodes.h"
61 #include "platform/graphics/Color.h" 61 #include "platform/graphics/Color.h"
62 #include "public/platform/Platform.h" 62 #include "public/platform/Platform.h"
63 #include "public/platform/WebSize.h" 63 #include "public/platform/WebSize.h"
64 #include "public/platform/WebThread.h" 64 #include "public/platform/WebThread.h"
65 #include "public/platform/WebUnitTestSupport.h" 65 #include "public/platform/WebUnitTestSupport.h"
66 #include "public/web/WebWidgetClient.h" 66 #include "public/web/WebWidgetClient.h"
67 #include "third_party/skia/include/core/SkBitmap.h" 67 #include "third_party/skia/include/core/SkBitmap.h"
68 #include "third_party/skia/include/core/SkBitmapDevice.h" 68 #include "third_party/skia/include/core/SkBitmapDevice.h"
69 #include "third_party/skia/include/core/SkCanvas.h" 69 #include "third_party/skia/include/core/SkCanvas.h"
70 70
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after
1376 EXPECT_STREQ("1970-W01", inputElement->value().utf8().data()); 1376 EXPECT_STREQ("1970-W01", inputElement->value().utf8().data());
1377 1377
1378 openDateTimeChooser(webViewImpl, inputElement); 1378 openDateTimeChooser(webViewImpl, inputElement);
1379 client.chooserCompletion()->didChooseValue(std::numeric_limits<double>::quie t_NaN()); 1379 client.chooserCompletion()->didChooseValue(std::numeric_limits<double>::quie t_NaN());
1380 client.clearChooserCompletion(); 1380 client.clearChooserCompletion();
1381 EXPECT_STREQ("", inputElement->value().utf8().data()); 1381 EXPECT_STREQ("", inputElement->value().utf8().data());
1382 } 1382 }
1383 #endif 1383 #endif
1384 1384
1385 } 1385 }
OLDNEW
« no previous file with comments | « Source/web/tests/PopupMenuTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698