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

Side by Side Diff: Source/WebCore/inspector/InspectorFrontendHost.idl

Issue 13497009: Remove ENABLE(FILE_SYSTEM) compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: added CodeGeneratorInspector.py change 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
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 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 [Custom] void recordActionTaken(unsigned long actionCode); 62 [Custom] void recordActionTaken(unsigned long actionCode);
63 [Custom] void recordPanelShown(unsigned long panelCode); 63 [Custom] void recordPanelShown(unsigned long panelCode);
64 [Custom] void recordSettingChanged(unsigned long settingChanged); 64 [Custom] void recordSettingChanged(unsigned long settingChanged);
65 65
66 DOMString loadResourceSynchronously(DOMString url); 66 DOMString loadResourceSynchronously(DOMString url);
67 67
68 boolean supportsFileSystems(); 68 boolean supportsFileSystems();
69 void requestFileSystems(); 69 void requestFileSystems();
70 void addFileSystem(); 70 void addFileSystem();
71 void removeFileSystem(DOMString fileSystemPath); 71 void removeFileSystem(DOMString fileSystemPath);
72 [Conditional=FILE_SYSTEM] DOMFileSystem isolatedFileSystem(DOMString fileSys temId, DOMString registeredName); 72 DOMFileSystem isolatedFileSystem(DOMString fileSystemId, DOMString registere dName);
73 73
74 boolean isUnderTest(); 74 boolean isUnderTest();
75 75
76 // Deprecated 76 // Deprecated
77 boolean canInspectWorkers(); 77 boolean canInspectWorkers();
78 boolean canSaveAs(); 78 boolean canSaveAs();
79 DOMString hiddenPanels(); 79 DOMString hiddenPanels();
80 }; 80 };
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/InspectorFrontendHost.cpp ('k') | Source/WebCore/inspector/InstrumentingAgents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698