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

Side by Side Diff: third_party/WebKit/Source/web/AssertMatchingEnums.cpp

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some (incomplete) work on struct traits. Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 #include "public/platform/WebScrollbar.h" 92 #include "public/platform/WebScrollbar.h"
93 #include "public/platform/WebScrollbarBehavior.h" 93 #include "public/platform/WebScrollbarBehavior.h"
94 #include "public/platform/WebSelectionBound.h" 94 #include "public/platform/WebSelectionBound.h"
95 #include "public/platform/WebStorageQuotaError.h" 95 #include "public/platform/WebStorageQuotaError.h"
96 #include "public/platform/WebStorageQuotaType.h" 96 #include "public/platform/WebStorageQuotaType.h"
97 #include "public/platform/WebURLRequest.h" 97 #include "public/platform/WebURLRequest.h"
98 #include "public/platform/WebURLResponse.h" 98 #include "public/platform/WebURLResponse.h"
99 #include "public/platform/modules/indexeddb/WebIDBCursor.h" 99 #include "public/platform/modules/indexeddb/WebIDBCursor.h"
100 #include "public/platform/modules/indexeddb/WebIDBDatabase.h" 100 #include "public/platform/modules/indexeddb/WebIDBDatabase.h"
101 #include "public/platform/modules/indexeddb/WebIDBDatabaseException.h" 101 #include "public/platform/modules/indexeddb/WebIDBDatabaseException.h"
102 #include "public/platform/modules/indexeddb/WebIDBFactory.h"
103 #include "public/platform/modules/indexeddb/WebIDBKey.h" 102 #include "public/platform/modules/indexeddb/WebIDBKey.h"
104 #include "public/platform/modules/indexeddb/WebIDBKeyPath.h" 103 #include "public/platform/modules/indexeddb/WebIDBKeyPath.h"
105 #include "public/platform/modules/indexeddb/WebIDBMetadata.h" 104 #include "public/platform/modules/indexeddb/WebIDBMetadata.h"
106 #include "public/platform/modules/indexeddb/WebIDBTypes.h" 105 #include "public/platform/modules/indexeddb/WebIDBTypes.h"
107 #include "public/web/WebAXEnums.h" 106 #include "public/web/WebAXEnums.h"
108 #include "public/web/WebAXObject.h" 107 #include "public/web/WebAXObject.h"
109 #include "public/web/WebClientRedirectPolicy.h" 108 #include "public/web/WebClientRedirectPolicy.h"
110 #include "public/web/WebConsoleMessage.h" 109 #include "public/web/WebConsoleMessage.h"
111 #include "public/web/WebContentSecurityPolicy.h" 110 #include "public/web/WebContentSecurityPolicy.h"
112 #include "public/web/WebFrameClient.h" 111 #include "public/web/WebFrameClient.h"
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachType::Swap ); 753 STATIC_ASSERT_ENUM(FrameDetachType::Swap, WebRemoteFrameClient::DetachType::Swap );
755 754
756 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::LoadEvent, ProgressBarCom pletion::LoadEvent); 755 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::LoadEvent, ProgressBarCom pletion::LoadEvent);
757 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::ResourcesBeforeDCL, Progr essBarCompletion::ResourcesBeforeDCL); 756 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::ResourcesBeforeDCL, Progr essBarCompletion::ResourcesBeforeDCL);
758 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::DOMContentLoaded, Progres sBarCompletion::DOMContentLoaded); 757 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::DOMContentLoaded, Progres sBarCompletion::DOMContentLoaded);
759 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSame OriginIFrames, ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames); 758 STATIC_ASSERT_ENUM(WebSettings::ProgressBarCompletion::ResourcesBeforeDCLAndSame OriginIFrames, ProgressBarCompletion::ResourcesBeforeDCLAndSameOriginIFrames);
760 759
761 static_assert(kSerializedScriptValueVersion == SerializedScriptValue::wireFormat Version, ""); 760 static_assert(kSerializedScriptValueVersion == SerializedScriptValue::wireFormat Version, "");
762 761
763 } // namespace blink 762 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698