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

Side by Side Diff: Source/core/inspector/InspectorFrontendHost.cpp

Issue 402563003: DevTools: Remote Web Debugging for mobile Chrome M37 doesn't work with desktop Chrome M38 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 String InspectorFrontendHost::getSelectionForegroundColor() 238 String InspectorFrontendHost::getSelectionForegroundColor()
239 { 239 {
240 return RenderTheme::theme().activeSelectionForegroundColor().serialized(); 240 return RenderTheme::theme().activeSelectionForegroundColor().serialized();
241 } 241 }
242 242
243 bool InspectorFrontendHost::isUnderTest() 243 bool InspectorFrontendHost::isUnderTest()
244 { 244 {
245 return m_client && m_client->isUnderTest(); 245 return m_client && m_client->isUnderTest();
246 } 246 }
247 247
248 bool InspectorFrontendHost::isStub() 248 bool InspectorFrontendHost::isHostedMode()
249 { 249 {
250 return false; 250 return false;
251 } 251 }
252 252
253 } // namespace WebCore 253 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorFrontendHost.h ('k') | Source/core/inspector/InspectorFrontendHost.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698