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

Side by Side Diff: Source/core/testing/Internals.cpp

Issue 14483003: Absolutify paths to platform/chromium, platform/chromium/support, (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderLayerCompositor.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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 #if ENABLE(ENCRYPTED_MEDIA_V2) 120 #if ENABLE(ENCRYPTED_MEDIA_V2)
121 #include "CDM.h" 121 #include "CDM.h"
122 #include "MockCDM.h" 122 #include "MockCDM.h"
123 #endif 123 #endif
124 124
125 #include "CaptionUserPreferences.h" 125 #include "CaptionUserPreferences.h"
126 #include "PageGroup.h" 126 #include "PageGroup.h"
127 127
128 #if ENABLE(SPEECH_SYNTHESIS) 128 #if ENABLE(SPEECH_SYNTHESIS)
129 #include "DOMWindowSpeechSynthesis.h" 129 #include "DOMWindowSpeechSynthesis.h"
130 #include "PlatformSpeechSynthesizerMock.h"
131 #include "SpeechSynthesis.h" 130 #include "SpeechSynthesis.h"
131 #include "core/platform/mock/PlatformSpeechSynthesizerMock.h"
132 #endif 132 #endif
133 133
134 namespace WebCore { 134 namespace WebCore {
135 135
136 #if ENABLE(PAGE_POPUP) 136 #if ENABLE(PAGE_POPUP)
137 static MockPagePopupDriver* s_pagePopupDriver = 0; 137 static MockPagePopupDriver* s_pagePopupDriver = 0;
138 #endif 138 #endif
139 139
140 using namespace HTMLNames; 140 using namespace HTMLNames;
141 141
(...skipping 1815 matching lines...) Expand 10 before | Expand all | Expand 10 after
1957 1957
1958 RenderObject* renderer = select->renderer(); 1958 RenderObject* renderer = select->renderer();
1959 if (!renderer->isMenuList()) 1959 if (!renderer->isMenuList())
1960 return false; 1960 return false;
1961 1961
1962 RenderMenuList* menuList = toRenderMenuList(renderer); 1962 RenderMenuList* menuList = toRenderMenuList(renderer);
1963 return menuList->popupIsVisible(); 1963 return menuList->popupIsVisible();
1964 } 1964 }
1965 1965
1966 } 1966 }
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerCompositor.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698